diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
commit | 5f5ee2367157176ed223b86343eb0a9e4022e020 (patch) | |
tree | 6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /ark/extractiondialog.h | |
parent | 4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff) | |
download | tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ark/extractiondialog.h')
-rw-r--r-- | ark/extractiondialog.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ark/extractiondialog.h b/ark/extractiondialog.h index 822c085..b0619b1 100644 --- a/ark/extractiondialog.h +++ b/ark/extractiondialog.h @@ -29,7 +29,7 @@ #ifndef EXTRACTIONDIALOG_H #define EXTRACTIONDIALOG_H -#include <qcheckbox.h> +#include <tqcheckbox.h> #include <kurl.h> #include <kdialogbase.h> @@ -45,11 +45,11 @@ class ExtractionDialog : public KDialogBase /** * Constructor. */ - ExtractionDialog( QWidget *parent = 0, const char *name = 0, + ExtractionDialog( TQWidget *parent = 0, const char *name = 0, bool enableSelected = true, const KURL &defaultExtractionDir = KURL(), - const QString &prefix = QString(), - const QString &archiveName = QString::null ); + const TQString &prefix = TQString(), + const TQString &archiveName = TQString::null ); /** * Destructor. @@ -77,19 +77,19 @@ class ExtractionDialog : public KDialogBase public slots: void accept(); - void extractDirChanged( const QString & ); + void extractDirChanged( const TQString & ); private: - QRadioButton *m_selectedButton; - QRadioButton *m_allButton; - QCheckBox *m_viewFolderAfterExtraction; + TQRadioButton *m_selectedButton; + TQRadioButton *m_allButton; + TQCheckBox *m_viewFolderAfterExtraction; bool m_selectedOnly; KURL m_extractionDirectory; KURLRequester *m_urlRequester; - QString m_defaultExtractionDir; - QString m_prefix; + TQString m_defaultExtractionDir; + TQString m_prefix; }; #endif // EXTRACTIONDIALOG_H |