fix filter folder name to be one byte

This commit is contained in:
bienvenu%netscape.com 1999-05-28 02:14:59 +00:00
parent a0931aa3a6
commit 88b19e05c6
2 changed files with 13 additions and 2 deletions

View File

@ -27,6 +27,14 @@
static const char *kImapPrefix = "//imap:";
nsMsgRuleAction::nsMsgRuleAction() : m_folderName(eOneByte)
{
}
nsMsgRuleAction::~nsMsgRuleAction()
{
}
nsMsgFilter::nsMsgFilter() : m_filterName(eOneByte)
{

View File

@ -24,14 +24,17 @@
#include "nsIMsgFilter.h"
typedef struct nsMsgRuleAction
class nsMsgRuleAction
{
public:
nsMsgRuleAction();
virtual ~nsMsgRuleAction();
nsMsgRuleActionType m_type;
// this used to be a union - why bother?
nsMsgPriority m_priority; /* priority to set rule to */
nsString2 m_folderName; /* Or some folder identifier, if such a thing is invented */
nsString2 m_originalServerPath;
} nsMsgRuleAction;
} ;
class nsMsgFilter : public nsIMsgFilter