diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-04 19:54:24 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-04 19:54:24 +0000 |
commit | d7633c195a464e4d344ada9eea61afd10110598a (patch) | |
tree | 1f2da0b135f3ed84955e340cae823f00c4ce7284 /src/commandline_part.h | |
parent | 3fa7eb804f67b2789f128075cc2522f398640250 (diff) | |
download | tdesvn-d7633c195a464e4d344ada9eea61afd10110598a.tar.gz tdesvn-d7633c195a464e4d344ada9eea61afd10110598a.zip |
Port kdesvn to TQt4
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1230412 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/commandline_part.h')
-rw-r--r-- | src/commandline_part.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/commandline_part.h b/src/commandline_part.h index 03a8366..74aebda 100644 --- a/src/commandline_part.h +++ b/src/commandline_part.h @@ -20,7 +20,7 @@ #ifndef COMMANDLINE_PART_H #define COMMANDLINE_PART_H -#include <qobject.h> +#include <tqobject.h> class CommandExec; class KCmdLineArgs; @@ -28,11 +28,12 @@ class KCmdLineArgs; /** @author Rajko Albrecht */ -class commandline_part : public QObject +class commandline_part : public TQObject { Q_OBJECT + TQ_OBJECT public: - commandline_part(QObject *parent, const char *name, KCmdLineArgs *args); + commandline_part(TQObject *tqparent, const char *name, KCmdLineArgs *args); virtual ~commandline_part(); virtual int exec(); private: |