diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 21:11:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 21:11:15 +0000 |
commit | 9885af067f442d03025eb180e0e5472b636ac265 (patch) | |
tree | d3eea362985c3df054c9ac5ad109f2d644bca865 /kdpkg-install/install.h | |
parent | b155cffc1b83c93eab4a7a09d5c8a00afec0a528 (diff) | |
download | kdpkg-9885af067f442d03025eb180e0e5472b636ac265.tar.gz kdpkg-9885af067f442d03025eb180e0e5472b636ac265.zip |
TQt4 port kdpkg
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdpkg@1239294 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdpkg-install/install.h')
-rw-r--r-- | kdpkg-install/install.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/kdpkg-install/install.h b/kdpkg-install/install.h index 7fb280c..8117c89 100644 --- a/kdpkg-install/install.h +++ b/kdpkg-install/install.h @@ -25,23 +25,24 @@ #include <kde_terminal_interface.h> #include <kparts/part.h> #include <process.h> -#include <qprocess.h> +#include <tqprocess.h> class install : public InstallDialog { Q_OBJECT + TQ_OBJECT public: - install(const QString &url = QString(), QWidget *parent = 0L, const char *name = 0L, const QStringList &foo = QStringList()); - QString installPkg; - QString removePkg; - QString path; - QStringList fields; - QString m_kdePrefix; - bool isInstalled(QString); + install(const TQString &url = TQString(), TQWidget *tqparent = 0L, const char *name = 0L, const TQStringList &foo = TQStringList()); + TQString installPkg; + TQString removePkg; + TQString path; + TQStringList fields; + TQString m_kdePrefix; + bool isInstalled(TQString); bool checkArchitecture(); bool isLocked(); - QStringList getVersions(QString); + TQStringList getVersions(TQString); |