summaryrefslogtreecommitdiffstats
path: root/src/app/historyAction.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/historyAction.h')
-rw-r--r--src/app/historyAction.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/app/historyAction.h b/src/app/historyAction.h
index 773093c..dbbf19e 100644
--- a/src/app/historyAction.h
+++ b/src/app/historyAction.h
@@ -6,18 +6,18 @@
#include <kaction.h>
#include <kurl.h>
-#include <qstringlist.h>
+#include <tqstringlist.h>
class KConfig;
/// defined in mainWindow.cpp
-void setActionMenuTextOnly( KAction *a, QString const &suffix );
+void setActionMenuTextOnly( KAction *a, TQString const &suffix );
class HistoryAction : KAction
{
- HistoryAction( const QString &text, const char *icon, const KShortcut &cut, KActionCollection *ac, const char *name );
+ HistoryAction( const TQString &text, const char *icon, const KShortcut &cut, KActionCollection *ac, const char *name );
friend class HistoryCollection;
@@ -29,20 +29,21 @@ public:
private:
void setText();
- void push( const QString &path );
- QString pop();
+ void push( const TQString &path );
+ TQString pop();
- const QString m_text;
- QStringList m_list;
+ const TQString m_text;
+ TQStringList m_list;
};
-class HistoryCollection : public QObject
+class HistoryCollection : public TQObject
{
Q_OBJECT
+ TQ_OBJECT
public:
- HistoryCollection( KActionCollection *ac, QObject *parent, const char *name );
+ HistoryCollection( KActionCollection *ac, TQObject *tqparent, const char *name );
void save( KConfig *config );
void restore( KConfig *config );