summaryrefslogtreecommitdiffstats
path: root/conduits/popmail/popmail-conduit.cc
diff options
context:
space:
mode:
Diffstat (limited to 'conduits/popmail/popmail-conduit.cc')
-rw-r--r--conduits/popmail/popmail-conduit.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/conduits/popmail/popmail-conduit.cc b/conduits/popmail/popmail-conduit.cc
index d328173..15441e5 100644
--- a/conduits/popmail/popmail-conduit.cc
+++ b/conduits/popmail/popmail-conduit.cc
@@ -61,8 +61,8 @@ unsigned long version_conduit_popmail = Pilot::PLUGIN_API;
#include <pi-mail.h>
#include <tqdir.h>
-#include <textstream.h>
-#include <textcodec.h>
+#include <tqtextstream.h>
+#include <tqtextcodec.h>
#include <kapplication.h>
#include <kmessagebox.h>
@@ -319,7 +319,7 @@ void PopMailConduit::writeMessageToFile(FILE* sendf, struct Mail& theMail)
// if our struct indicates that it's dated, then use the date it
// holds. otherwise, provide current date. either way, we need to
// have a date...
- TQDateTime date = TQDateTime::currentDateTime();
+ TQDateTime date = TQDateTime::tqcurrentDateTime();
if (theMail.dated)
{
date = readTm(theMail.date);
@@ -377,7 +377,7 @@ void PopMailConduit::writeMessageToFile(FILE* sendf, struct Mail& theMail)
<< outbox
<< endl;
- TQDateTime date = TQDateTime::currentDateTime();
+ TQDateTime date = TQDateTime::tqcurrentDateTime();
TQString dateString = date.toString(DATE_FORMAT);
DEBUGKPILOT << fname << ": Date format example: [" << dateString