[haiku-commits] r40835 - in haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap: . imap_lib

  • From: clemens.zeidler@xxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 6 Mar 2011 10:41:12 +0100 (CET)

Author: czeidler
Date: 2011-03-06 10:41:11 +0100 (Sun, 06 Mar 2011)
New Revision: 40835
Changeset: http://dev.haiku-os.org/changeset/40835

Modified:
   
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/IMAPInboundProtocol.cpp
   
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPHandler.cpp
   
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPMailbox.h
Log:
Fix spelling, thanks J?\195?\169r?\195?\180me!



Modified: 
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/IMAPInboundProtocol.cpp
===================================================================
--- 
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/IMAPInboundProtocol.cpp
  2011-03-06 09:33:39 UTC (rev 40834)
+++ 
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/IMAPInboundProtocol.cpp
  2011-03-06 09:41:11 UTC (rev 40835)
@@ -29,7 +29,7 @@
 
 void
 DispatcherIMAPListener::HeaderFetched(int32 uid, BPositionIO* data,
-       bool bodyIsComming)
+       bool bodyIsComing)
 {
        BFile* file = dynamic_cast<BFile*>(data);
        if (file == NULL)
@@ -40,7 +40,7 @@
 
        fProtocol.NotifyHeaderFetched(ref, file);
 
-       if (!bodyIsComming)
+       if (!bodyIsComing)
                fProtocol.ReportProgress(0, 1);
 }
 

Modified: 
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPHandler.cpp
===================================================================
--- 
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPHandler.cpp
 2011-03-06 09:33:39 UTC (rev 40834)
+++ 
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPHandler.cpp
 2011-03-06 09:41:11 UTC (rev 40835)
@@ -407,15 +407,15 @@
        BString lastLine;
        fConnectionReader.GetNextLine(lastLine);
 
-       bool bodyIsComming = true;
+       bool bodyIsComing = true;
        if (fFetchBodyLimit >= 0 && fFetchBodyLimit <= messageSize)
-               bodyIsComming = false;
+               bodyIsComing = false;
 
        int32 uid = fIMAPMailbox.MessageNumberToUID(message);
        if (uid >= 0)
-               fIMAPMailbox.Listener().HeaderFetched(uid, data, bodyIsComming);
+               fIMAPMailbox.Listener().HeaderFetched(uid, data, bodyIsComing);
 
-       if (!bodyIsComming)
+       if (!bodyIsComing)
                return true;
 
        deleter.Detach();

Modified: 
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPMailbox.h
===================================================================
--- 
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPMailbox.h
   2011-03-06 09:33:39 UTC (rev 40834)
+++ 
haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPMailbox.h
   2011-03-06 09:41:11 UTC (rev 40835)
@@ -19,7 +19,7 @@
        virtual                                         ~IMAPMailboxListener() 
{}
 
        virtual void                            HeaderFetched(int32 uid, 
BPositionIO* data,
-                                                                       bool 
bodyIsComming) {}
+                                                                       bool 
bodyIsComing) {}
        virtual void                            BodyFetched(int32 uid, 
BPositionIO* data) {}
 
        virtual void                            NewMessagesToFetch(int32 
nMessages) {}


Other related posts:

  • » [haiku-commits] r40835 - in haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap: . imap_lib - clemens . zeidler