зеркало из https://github.com/mozilla/pjs.git
fixed bug 5662 - imap failed to discover folders and downloading mail messages; removed GetRootFolderPath() & SetRootFolderPath(); checkin for mscott; r=jefft, a=chofmann
This commit is contained in:
Родитель
6a955d5779
Коммит
b640ff29d9
|
@ -23,10 +23,6 @@ class nsIImapIncomingServer : public nsISupports {
|
|||
return iid;
|
||||
}
|
||||
|
||||
/* attribute string rootFolderPath; */
|
||||
NS_IMETHOD GetRootFolderPath(char * *aRootFolderPath) = 0;
|
||||
NS_IMETHOD SetRootFolderPath(char * aRootFolderPath) = 0;
|
||||
|
||||
};
|
||||
|
||||
#endif /* __gen_nsIPop3IncomingServer_h__ */
|
||||
|
|
|
@ -44,8 +44,6 @@ public:
|
|||
virtual ~nsImapIncomingServer();
|
||||
|
||||
// we support the nsIImapIncomingServer interface
|
||||
NS_IMETHOD GetRootFolderPath(char **);
|
||||
NS_IMETHOD SetRootFolderPath(char *);
|
||||
NS_IMETHOD SetKey(char * aKey); // override nsMsgIncomingServer's implementation...
|
||||
NS_IMETHOD GetServerURI(char * *aServerURI);
|
||||
|
||||
|
@ -68,8 +66,6 @@ nsImapIncomingServer::~nsImapIncomingServer()
|
|||
PR_FREEIF(m_rootFolderPath);
|
||||
}
|
||||
|
||||
NS_IMPL_SERVERPREF_STR(nsImapIncomingServer, RootFolderPath, "directory")
|
||||
|
||||
NS_IMETHODIMP nsImapIncomingServer::SetKey(char * aKey) // override nsMsgIncomingServer's implementation...
|
||||
{
|
||||
nsMsgIncomingServer::SetKey(aKey);
|
||||
|
|
Загрузка…
Ссылка в новой задаче