summaryrefslogtreecommitdiffstats
path: root/kmail/filterlog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/filterlog.h')
-rw-r--r--kmail/filterlog.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kmail/filterlog.h b/kmail/filterlog.h
index 81455679..d49efb22 100644
--- a/kmail/filterlog.h
+++ b/kmail/filterlog.h
@@ -29,9 +29,9 @@
#ifndef KMAIL_FILTERLOG_H
#define KMAIL_FILTERLOG_H
-#include <qobject.h>
-#include <qstringlist.h>
-#include <qstylesheet.h>
+#include <tqobject.h>
+#include <tqstringlist.h>
+#include <tqstylesheet.h>
namespace KMail {
@@ -102,7 +102,7 @@ namespace KMail {
/** add a log entry */
- void add( QString logEntry, ContentType contentType );
+ void add( TQString logEntry, ContentType contentType );
/** add a separating line in the log */
void addSeparator() { add( "------------------------------", meta ); };
/** discard collected log data */
@@ -115,19 +115,19 @@ namespace KMail {
/** get access to the log entries */
- const QStringList & getLogEntries() { return mLogEntries; };
+ const TQStringList & getLogEntries() { return mLogEntries; };
/** dump the log - for testing purposes */
void dump();
/** save the log to a file - returns true if okay */
- bool saveToFile( QString fileName );
+ bool saveToFile( TQString fileName );
/** destructor */
virtual ~FilterLog();
- static QString recode( const QString & plain ) { return QStyleSheet::escape(plain); };
+ static TQString recode( const TQString & plain ) { return TQStyleSheet::escape(plain); };
signals:
- void logEntryAdded( QString );
+ void logEntryAdded( TQString );
void logShrinked();
void logStateChanged();
@@ -136,7 +136,7 @@ namespace KMail {
FilterLog();
/** The list contains the single log pieces */
- QStringList mLogEntries;
+ TQStringList mLogEntries;
/** the log status */
bool mLogging;