fix constructor order to match declaration

This commit is contained in:
alecf%netscape.com 1999-03-20 02:17:02 +00:00
parent 4967607a7f
commit 6f3161f586

View File

@ -35,7 +35,10 @@
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
static NS_DEFINE_CID(kUrlListenerManagerCID, NS_URLLISTENERMANAGER_CID);
nsSmtpUrl::nsSmtpUrl(nsISupports* aContainer, nsIURLGroup* aGroup) : m_fileName(""), m_userName(""), m_userPassword("")
nsSmtpUrl::nsSmtpUrl(nsISupports* aContainer, nsIURLGroup* aGroup) :
m_userPassword(""),
m_userName(""),
m_fileName("")
{
NS_INIT_REFCNT();