зеркало из https://github.com/mozilla/gecko-dev.git
Quiet compiler warnings in prepration of turning on imap for Linux.
This commit is contained in:
Родитель
884bb4bb82
Коммит
06b67141bf
|
@ -1127,7 +1127,6 @@ nsIMAPBodypartType nsIMAPBodypartMultipart::GetType()
|
|||
|
||||
nsIMAPBodypartMultipart::~nsIMAPBodypartMultipart()
|
||||
{
|
||||
nsIMAPBodypart *bp = NULL;
|
||||
for (int i = m_partList->Count() - 1; i >= 0; i--)
|
||||
{
|
||||
delete (nsIMAPBodypart *)(m_partList->ElementAt(i));
|
||||
|
@ -1468,13 +1467,13 @@ PRBool nsIMAPMessageHeaders::ShouldFetchInline()
|
|||
|
||||
///////////// nsIMAPBodyShellCache ////////////////////////////////////
|
||||
|
||||
|
||||
#if 0 // mscott - commenting out because it does not appear to be used
|
||||
static int
|
||||
imap_shell_cache_strcmp (const void *a, const void *b)
|
||||
{
|
||||
return PL_strcmp ((const char *) a, (const char *) b);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
nsIMAPBodyShellCache::nsIMAPBodyShellCache()
|
||||
{
|
||||
|
|
|
@ -111,7 +111,7 @@ nsImapService::CreateImapConnection(nsIEventQueue *aEventQueue, nsIImapUrl * aIm
|
|||
PRBool canRunUrl = PR_FALSE;
|
||||
nsCOMPtr<nsIImapProtocol> connection;
|
||||
// iterate through the connection cache for a connection that can handle this url.
|
||||
for (PRInt32 i = 0; i < m_connectionCache->Count() && !canRunUrl; i++)
|
||||
for (PRUint32 i = 0; i < m_connectionCache->Count() && !canRunUrl; i++)
|
||||
{
|
||||
connection = do_QueryInterface(m_connectionCache->ElementAt(i));
|
||||
if (connection)
|
||||
|
@ -276,8 +276,6 @@ static const char *uidString = "UID";
|
|||
NS_IMETHODIMP nsImapService::DisplayMessage(const char* aMessageURI, nsISupports * aDisplayConsumer,
|
||||
nsIUrlListener * aUrlListener, nsIURL ** aURL)
|
||||
{
|
||||
nsImapUrl * imapUrl = nsnull;
|
||||
nsIImapUrl * url = nsnull;
|
||||
nsresult rv = NS_OK;
|
||||
nsCOMPtr<nsIEventQueue> queue;
|
||||
// get the Event Queue for this thread...
|
||||
|
@ -602,7 +600,7 @@ nsImapService::Biff(nsIEventQueue * aClientEventQueue,
|
|||
nsIURL ** aURL,
|
||||
PRUint32 uidHighWater)
|
||||
{
|
||||
static const char *formatString = "biff>%c%s>%ld";
|
||||
// static const char *formatString = "biff>%c%s>%ld";
|
||||
|
||||
NS_ASSERTION (aImapMailFolder && aClientEventQueue,
|
||||
"Oops ... null pointer");
|
||||
|
@ -1005,7 +1003,6 @@ nsImapService::DiscoverChildren(nsIEventQueue* aClientEventQueue,
|
|||
|
||||
if (NS_SUCCEEDED(rv))
|
||||
{
|
||||
PRBool gotFolder = PR_FALSE;
|
||||
nsString2 folderName("", eOneByte);
|
||||
GetFolderName(aImapUrl, aImapMailFolder, folderName);
|
||||
if (folderName.Length() > 0)
|
||||
|
@ -1060,7 +1057,6 @@ nsImapService::DiscoverLevelChildren(nsIEventQueue* aClientEventQueue,
|
|||
|
||||
if (NS_SUCCEEDED(rv))
|
||||
{
|
||||
PRBool gotFolder = PR_FALSE;
|
||||
nsString2 folderName("", eOneByte);
|
||||
GetFolderName(aImapUrl, aImapMailFolder, folderName);
|
||||
if (folderName.Length() > 0)
|
||||
|
|
Загрузка…
Ссылка в новой задаче