From 13ee0577879e4259f0cd7095434cb41082156221 Mon Sep 17 00:00:00 2001 From: Clemens Zeidler Date: Sun, 6 Mar 2011 09:41:11 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20spelling,=20thanks=20J=C3=A9r=C3=B4me!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40835 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../inbound_protocols/imap/IMAPInboundProtocol.cpp | 4 ++-- .../inbound_protocols/imap/imap_lib/IMAPHandler.cpp | 8 ++++---- .../inbound_protocols/imap/imap_lib/IMAPMailbox.h | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/add-ons/mail_daemon/inbound_protocols/imap/IMAPInboundProtocol.cpp b/src/add-ons/mail_daemon/inbound_protocols/imap/IMAPInboundProtocol.cpp index a70608d987..1c7d6d81f5 100644 --- a/src/add-ons/mail_daemon/inbound_protocols/imap/IMAPInboundProtocol.cpp +++ b/src/add-ons/mail_daemon/inbound_protocols/imap/IMAPInboundProtocol.cpp @@ -29,7 +29,7 @@ DispatcherIMAPListener::DispatcherIMAPListener(MailProtocol& protocol, void DispatcherIMAPListener::HeaderFetched(int32 uid, BPositionIO* data, - bool bodyIsComming) + bool bodyIsComing) { BFile* file = dynamic_cast(data); if (file == NULL) @@ -40,7 +40,7 @@ DispatcherIMAPListener::HeaderFetched(int32 uid, BPositionIO* data, fProtocol.NotifyHeaderFetched(ref, file); - if (!bodyIsComming) + if (!bodyIsComing) fProtocol.ReportProgress(0, 1); } diff --git a/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPHandler.cpp b/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPHandler.cpp index b013745256..8a199419a9 100644 --- a/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPHandler.cpp +++ b/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPHandler.cpp @@ -407,15 +407,15 @@ FetchMessageCommand::Handle(const BString& response) 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(); diff --git a/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPMailbox.h b/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPMailbox.h index e9588ff278..50bc0d0a11 100644 --- a/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPMailbox.h +++ b/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/IMAPMailbox.h @@ -19,7 +19,7 @@ public: 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) {}