summaryrefslogtreecommitdiffstats
path: root/kmail/kmcommands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kmcommands.cpp')
-rw-r--r--kmail/kmcommands.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/kmcommands.cpp b/kmail/kmcommands.cpp
index d4fead48..8b477924 100644
--- a/kmail/kmcommands.cpp
+++ b/kmail/kmcommands.cpp
@@ -75,7 +75,7 @@
#include <tdetempfile.h>
#include <tdeimproxy.h>
#include <kuserprofile.h>
-// KIO headers
+// TDEIO headers
#include <tdeio/job.h>
#include <tdeio/netaccess.h>
@@ -932,7 +932,7 @@ void KMSaveMsgCommand::slotMessageRetrievedForSaving(KMMessage *msg)
mOffset = 0;
TQByteArray data;
int size;
- // Unless it is great than 64 k send the whole message. kio buffers for us.
+ // Unless it is great than 64 k send the whole message. tdeio buffers for us.
if( mData.size() > (unsigned int) MAX_CHUNK_SIZE )
size = MAX_CHUNK_SIZE;
else