fix bustage

git-svn-id: svn://10.0.0.236/branches/MailNews_Performance_20010208_BRANCH@89190 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sspitzer%netscape.com
2001-03-10 01:55:41 +00:00
parent 3e9a5b629d
commit 21009b76df
2 changed files with 6 additions and 6 deletions

View File

@@ -30,8 +30,9 @@
#include "nsIMsgSearchValidityManager.h"
#include "nsIMsgSearchTerm.h"
#include "nsMsgSearchArray.h"
#include "nsINntpIncomingServer.h"
class nsIMsgSearchScopeTerm;
class nsINNTPHost;
//-----------------------------------------------------------------------------
// These Adapter classes contain the smarts to convert search criteria from
@@ -175,7 +176,7 @@ public:
nsresult GetTable (int, nsMsgSearchValidityTable**);
nsresult PostProcessValidityTable (nsINNTPHost*);
nsresult PostProcessValidityTable (nsINntpIncomingServer *);
protected:
@@ -197,7 +198,7 @@ protected:
nsresult InitOnlineMailFilterTable ();
nsresult InitNewsTable ();
nsresult InitLocalNewsTable();
nsresult InitNewsExTable (nsINNTPHost *host = nsnull);
nsresult InitNewsExTable (nsINntpIncomingServer *host = nsnull);
void EnableLdapAttribute (nsMsgSearchAttribValue, PRBool enabled = PR_TRUE);
};

View File

@@ -27,7 +27,6 @@
#include "nsMsgSearchTerm.h"
#include "nsIMsgHdr.h"
#include "nsMsgSearchNews.h"
#include "nsINNTPHost.h"
#include "nsIDBFolderInfo.h"
// Implementation of search for IMAP mail folders
@@ -708,7 +707,7 @@ nsresult nsMsgSearchValidityManager::InitNewsTable ()
}
nsresult nsMsgSearchValidityManager::InitNewsExTable (nsINNTPHost *newsHost)
nsresult nsMsgSearchValidityManager::InitNewsExTable (nsINntpIncomingServer *newsHost)
{
nsresult err = NS_OK;
@@ -793,7 +792,7 @@ nsresult nsMsgSearchValidityManager::InitNewsExTable (nsINNTPHost *newsHost)
}
nsresult nsMsgSearchValidityManager::PostProcessValidityTable (nsINNTPHost *host)
nsresult nsMsgSearchValidityManager::PostProcessValidityTable (nsINntpIncomingServer *host)
{
return InitNewsExTable (host);
}