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