diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
commit | dc6b8e72fed2586239e3514819238c520636c9d9 (patch) | |
tree | 88b200df0a0b7fab9d6f147596173556f1ed9a13 /kommander/widget/invokeclass.h | |
parent | 6927d4436e54551917f600b706a8d6109e49de1c (diff) | |
download | tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.tar.gz tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kommander/widget/invokeclass.h')
-rw-r--r-- | kommander/widget/invokeclass.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kommander/widget/invokeclass.h b/kommander/widget/invokeclass.h index 61688b3e..4b1a8c0b 100644 --- a/kommander/widget/invokeclass.h +++ b/kommander/widget/invokeclass.h @@ -13,43 +13,43 @@ #ifndef INVOKECLASS_H #define INVOKECLASS_H -#include <qobject.h> -#include <qstringlist.h> +#include <tqobject.h> +#include <tqstringlist.h> -class InvokeClass : public QObject { +class InvokeClass : public TQObject { Q_OBJECT public: - InvokeClass(QObject *parent); - void invokeSlot(QObject *object, const QString& slot, QStringList args); + InvokeClass(TQObject *parent); + void invokeSlot(TQObject *object, const TQString& slot, TQStringList args); - static QStringList acceptedSlots() + static TQStringList acceptedSlots() { - static QStringList acceptedSlots; - acceptedSlots << "const QString&"; - acceptedSlots << "const QString&,const QString&"; + static TQStringList acceptedSlots; + acceptedSlots << "const TQString&"; + acceptedSlots << "const TQString&,const TQString&"; acceptedSlots << "bool"; acceptedSlots << "int"; acceptedSlots << "int,int"; acceptedSlots << "int,int,int"; acceptedSlots << "int,int,int,int"; - acceptedSlots << "const QColor&"; + acceptedSlots << "const TQColor&"; return acceptedSlots; } signals: void invoke(); - void invoke(const QString&); - void invoke(const QString&,const QString&); + void invoke(const TQString&); + void invoke(const TQString&,const TQString&); void invoke(bool); void invoke(int); void invoke(int,int); void invoke(int,int,int); void invoke(int,int,int,int); - void invoke(const QColor&); + void invoke(const TQColor&); private: - QStringList m_acceptedSlots; + TQStringList m_acceptedSlots; }; |