summaryrefslogtreecommitdiffstats
path: root/kate/snippets/csnippet.h
diff options
context:
space:
mode:
Diffstat (limited to 'kate/snippets/csnippet.h')
-rw-r--r--kate/snippets/csnippet.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kate/snippets/csnippet.h b/kate/snippets/csnippet.h
index a139f03..3c75db4 100644
--- a/kate/snippets/csnippet.h
+++ b/kate/snippets/csnippet.h
@@ -10,30 +10,30 @@
#ifndef CSNIPPET_H
#define CSNIPPET_H
-#include <qobject.h>
-#include <qlistview.h>
+#include <tqobject.h>
+#include <tqlistview.h>
#include <kaction.h>
-#include <qsignalmapper.h>
+#include <tqsignalmapper.h>
/**
@author Stephan Möres
*/
-class CSnippet : public QObject {
+class CSnippet : public TQObject {
Q_OBJECT
public:
- CSnippet(QString sKey, QString sValue, QListViewItem *lvi, QObject *parent = 0, const char *name = 0);
+ CSnippet(TQString sKey, TQString sValue, TQListViewItem *lvi, TQObject *parent = 0, const char *name = 0);
~CSnippet();
- QString getKey() { return _sKey; }
- QString getValue() { return _sValue; }
- QListViewItem* getListViewItem() const { return _lvi; }
- void setKey(const QString& sKey) { _sKey = sKey; }
- void setValue(const QString& sValue) { _sValue = sValue; }
+ TQString getKey() { return _sKey; }
+ TQString getValue() { return _sValue; }
+ TQListViewItem* getListViewItem() const { return _lvi; }
+ void setKey(const TQString& sKey) { _sKey = sKey; }
+ void setValue(const TQString& sValue) { _sValue = sValue; }
protected:
- QString _sKey;
- QString _sValue;
- QListViewItem *_lvi;
+ TQString _sKey;
+ TQString _sValue;
+ TQListViewItem *_lvi;
};
#endif