summaryrefslogtreecommitdiffstats
path: root/katapult/plugins/catalogs/execcatalog/execcatalog.h
diff options
context:
space:
mode:
Diffstat (limited to 'katapult/plugins/catalogs/execcatalog/execcatalog.h')
-rw-r--r--katapult/plugins/catalogs/execcatalog/execcatalog.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/katapult/plugins/catalogs/execcatalog/execcatalog.h b/katapult/plugins/catalogs/execcatalog/execcatalog.h
index df550ee..cc1ac08 100644
--- a/katapult/plugins/catalogs/execcatalog/execcatalog.h
+++ b/katapult/plugins/catalogs/execcatalog/execcatalog.h
@@ -31,12 +31,12 @@
#include <kgenericfactory.h>
-#include <qstring.h>
+#include <tqstring.h>
#include "command.h"
#include "katapultcatalog.h"
-class QWidget;
+class TQWidget;
/**
@author Jonathan Riddell
@@ -44,15 +44,16 @@ class QWidget;
class ExecCatalog : public KatapultCatalog
{
Q_OBJECT
+ TQ_OBJECT
public:
- ExecCatalog(QObject*, const char*, const QStringList&);
+ ExecCatalog(TQObject*, const char*, const TQStringList&);
virtual ~ExecCatalog();
virtual void readSettings(KConfigBase*);
virtual void writeSettings(KConfigBase*);
- virtual QWidget* configure();
+ virtual TQWidget* configure();
int triggerWordLength();
protected:
@@ -60,16 +61,16 @@ class ExecCatalog : public KatapultCatalog
virtual void queryChanged();
private:
- bool accepts(const QString&) const;
+ bool accepts(const TQString&) const;
- QString _triggerWord;
+ TQString _triggerWord;
Command _result; // The one result (there's always one).
void reset();
protected slots:
- void triggerWordChanged(const QString& triggerWord);
+ void triggerWordChanged(const TQString& triggerWord);
};