summaryrefslogtreecommitdiffstats
path: root/kate/snippets/csnippet.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:22:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:22:56 +0000
commit7346aee26bf190a7e70333c40fab4caca847cd27 (patch)
tree4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /kate/snippets/csnippet.h
parent23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff)
downloadtdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.tar.gz
tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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