From 611710ba3b77fcab49894992421c3f79cb5f8777 Mon Sep 17 00:00:00 2001 From: "scc%mozilla.org" Date: Wed, 13 Sep 2000 08:59:22 +0000 Subject: [PATCH] if you want a pointer to characters, you're going to have to |.get()| it --- mailnews/imap/src/nsImapProtocol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailnews/imap/src/nsImapProtocol.cpp b/mailnews/imap/src/nsImapProtocol.cpp index ef73428534fd..10fa8baf718c 100644 --- a/mailnews/imap/src/nsImapProtocol.cpp +++ b/mailnews/imap/src/nsImapProtocol.cpp @@ -3976,7 +3976,7 @@ nsImapProtocol::AlertUserEvent(const char * message) { nsCOMPtr msgWindow; GetMsgWindow(getter_AddRefs(msgWindow)); - m_imapServerSink->FEAlert(NS_ConvertASCIItoUCS2(message), msgWindow); + m_imapServerSink->FEAlert(NS_ConvertASCIItoUCS2(message).get(), msgWindow); } }