fix build bustage on solaris, replace char * with const char *, r=timeless, sr=sspitzer 243130

This commit is contained in:
bienvenu%nventure.com 2004-05-10 01:31:40 +00:00
Родитель 3d2d932088
Коммит d86ef5d3ab
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -2240,6 +2240,8 @@ NS_IMETHODIMP nsMsgLocalMailFolder::GetNewMessages(nsIMsgWindow *aWindow, nsIUrl
{
PRUint32 numFolders;
rv = rootFolder->GetFoldersWithFlag(MSG_FOLDER_FLAG_INBOX, 1, &numFolders, getter_AddRefs(inbox));
if (!inbox)
}
nsCOMPtr<nsIMsgLocalMailFolder> localInbox = do_QueryInterface(inbox, &rv);
if (NS_SUCCEEDED(rv) && localInbox)
@ -2940,7 +2942,7 @@ nsresult nsMsgLocalMailFolder::CopyMessageTo(nsISupports *message,
NS_IMETHODIMP
nsMsgLocalMailFolder::MarkMsgsOnPop3Server(nsISupportsArray *aMessages, PRBool aDeleteMsgs)
{
char *uidl, *accountKey;
const char *uidl, *accountKey;
char *header = nsnull;
PRUint32 size = 0, len = 0;
nsCOMPtr <nsIMsgDBHdr> hdr;