diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kappfinder/toplevel.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kappfinder/toplevel.h')
-rw-r--r-- | kappfinder/toplevel.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/kappfinder/toplevel.h b/kappfinder/toplevel.h index 972e5adfb..a1765444c 100644 --- a/kappfinder/toplevel.h +++ b/kappfinder/toplevel.h @@ -24,7 +24,7 @@ #include <kdialog.h> -#include <qstringlist.h> +#include <tqstringlist.h> #include "common.h" @@ -38,7 +38,7 @@ class TopLevel : public KDialog Q_OBJECT public: - TopLevel( const QString &destDir, QWidget *parent = 0, const char *name = 0 ); + TopLevel( const TQString &destDir, TQWidget *parent = 0, const char *name = 0 ); ~TopLevel(); public slots: @@ -48,21 +48,21 @@ class TopLevel : public KDialog void slotUnselectAll(); private: - QListViewItem *addGroupItem( QListViewItem *parent, const QString &relPath, - const QString &name ); + TQListViewItem *addGroupItem( TQListViewItem *parent, const TQString &relPath, + const TQString &name ); KProgress *mProgress; - QLabel *mSummary; - QListView *mListView; - QPushButton *mApplyButton; - QPushButton *mQuitButton; - QPushButton *mScanButton; - QPushButton *mSelectButton; - QPushButton *mUnSelectButton; - QString mDestDir; - QStringList mTemplates; - - QPtrList<AppLnkCache> mAppCache; + TQLabel *mSummary; + TQListView *mListView; + TQPushButton *mApplyButton; + TQPushButton *mQuitButton; + TQPushButton *mScanButton; + TQPushButton *mSelectButton; + TQPushButton *mUnSelectButton; + TQString mDestDir; + TQStringList mTemplates; + + TQPtrList<AppLnkCache> mAppCache; int mFound, mAdded; }; |