nsIMsgMailNewsUrl base class updates. Keep track of whether the url is running or not...

git-svn-id: svn://10.0.0.236/trunk@21685 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mscott%netscape.com
1999-02-24 02:29:54 +00:00
parent b560ffbde3
commit ae089aebad
2 changed files with 4 additions and 0 deletions

View File

@@ -69,6 +69,7 @@ nsSmtpUrl::nsSmtpUrl(nsISupports* aContainer, nsIURLGroup* aGroup) : m_fileName(
m_spec = nsnull;
m_search = nsnull;
m_errorMessage = nsnull;
m_runningUrl = PR_FALSE;
m_container = aContainer;
NS_IF_ADDREF(m_container);

View File

@@ -55,6 +55,8 @@ public:
NS_IMETHOD GetContentLength(PRInt32 *len);
NS_IMETHOD GetServerStatus(PRInt32 *status); // make obsolete
NS_IMETHOD ToString(PRUnichar* *aString) const;
NS_IMPL_CLASS_GETSET(RunningUrlFlag, PRBool, m_runningUrl);
// from nsINetlibURL:
@@ -151,6 +153,7 @@ protected:
char *m_errorMessage;
PRBool m_forcePlainText;
PRBool m_runningUrl;
PRInt32 m_port;
nsISupports* m_container;