Update of /cvsroot/mahogany/M/src/mail
In directory usw-pr-cvs1:/tmp/cvs-serv25140/src/mail

Modified Files:
        HeaderInfoImpl.cpp MailFolderCC.cpp MailFolderCmn.cpp 
Log Message:
compilation warning fixes

Index: HeaderInfoImpl.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/HeaderInfoImpl.cpp,v
retrieving revision 1.86
retrieving revision 1.87
diff -b -u -2 -r1.86 -r1.87
--- HeaderInfoImpl.cpp  4 Jul 2002 17:22:37 -0000       1.86
+++ HeaderInfoImpl.cpp  5 Jul 2002 16:56:18 -0000       1.87
@@ -2008,5 +2008,5 @@
 {
    String s1 = MObjectRC::DebugDump(), s2;
-   s2.Printf("%u entries", Count());
+   s2.Printf("%u entries", (unsigned int)Count());
 
    return s1 + s2;

Index: MailFolderCC.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/MailFolderCC.cpp,v
retrieving revision 1.627
retrieving revision 1.628
diff -b -u -2 -r1.627 -r1.628
--- MailFolderCC.cpp    5 Jul 2002 15:58:26 -0000       1.627
+++ MailFolderCC.cpp    5 Jul 2002 16:56:18 -0000       1.628
@@ -5034,5 +5034,5 @@
       if ( m_headers )
       {
-         wxLogTrace(TRACE_MF_EVENTS, "Adding msgno %u to headers", msgnoMax);
+         wxLogTrace(TRACE_MF_EVENTS, "Adding msgno %u to headers", (unsigned 
+int)msgnoMax);
 
          m_headers->OnAdd(msgnoMax);
@@ -5140,5 +5140,5 @@
          }
 
-         wxLogTrace(TRACE_MF_EVENTS, "Removing msgno %u from headers", msgno);
+         wxLogTrace(TRACE_MF_EVENTS, "Removing msgno %u from headers", (unsigned 
+int)msgno);
 
          m_headers->OnRemove(idx);
@@ -6707,5 +6707,5 @@
    wxLogTrace(TRACE_CONN_CACHE,
               "Keeping connection to %s alive for %d seconds.",
-              stream->mailbox, delay);
+              stream->mailbox, (int)delay);
 
    m_timeouts.push_back(t + delay);
@@ -6720,5 +6720,5 @@
    {
       wxLogTrace(TRACE_CONN_CACHE,
-                 "Starting connection clean up timer (delay = %ds)", delay);
+                 "Starting connection clean up timer (delay = %ds)", (int)delay);
 
       // we want to use a smaller interval

Index: MailFolderCmn.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/MailFolderCmn.cpp,v
retrieving revision 1.96
retrieving revision 1.97
diff -b -u -2 -r1.96 -r1.97
--- MailFolderCmn.cpp   5 Jul 2002 15:57:06 -0000       1.96
+++ MailFolderCmn.cpp   5 Jul 2002 16:56:18 -0000       1.97
@@ -1876,5 +1876,5 @@
    wxLogTrace(TRACE_MF_NEWMAIL, "MF(%s)::ReportNewMail(%u msgs) (folder is %s)",
               folder->GetFullName().c_str(),
-              countNew,
+              (unsigned int)countNew,
               mf ? "opened" : "closed");
 



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Bringing you mounds of caffeinated joy.
http://thinkgeek.com/sf
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to