diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 23:15:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 23:15:51 +0000 |
commit | 6b1b516f42036cf9eff691dba3fd6e9eab82a7e1 (patch) | |
tree | 6830f75fd57d0fac7e33c097ee98b210e90c5239 /src/configgeneralpage.h | |
parent | 6318b8bb3ef964cfa99ba454a2630779cc9ac3ec (diff) | |
download | soundkonverter-6b1b516f42036cf9eff691dba3fd6e9eab82a7e1.tar.gz soundkonverter-6b1b516f42036cf9eff691dba3fd6e9eab82a7e1.zip |
TQt4 port soundkonverter
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/soundkonverter@1239038 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/configgeneralpage.h')
-rwxr-xr-x | src/configgeneralpage.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/configgeneralpage.h b/src/configgeneralpage.h index 270cb47..f8d912e 100755 --- a/src/configgeneralpage.h +++ b/src/configgeneralpage.h @@ -6,7 +6,7 @@ #include <configpagebase.h> class Config; -class QCheckBox; +class TQCheckBox; class KComboBox; class KIntSpinBox; class KLineEdit; @@ -20,11 +20,12 @@ class KPushButton; class ConfigGeneralPage : public ConfigPageBase { Q_OBJECT + TQ_OBJECT public: /** * Default Constructor */ - ConfigGeneralPage( Config*, QWidget *parent=0, const char *name=0 ); + ConfigGeneralPage( Config*, TQWidget *tqparent=0, const char *name=0 ); /** * Default Destructor @@ -34,26 +35,26 @@ public: private: KComboBox* cStartTab; KComboBox* cDefaultProfile; - QStringList sDefaultProfile; + TQStringList sDefaultProfile; KComboBox* cDefaultFormat; - QStringList sDefaultFormat; + TQStringList sDefaultFormat; // KLineEdit* lDir; //KPushButton* pDirInfo; // KPushButton* pDirSelect; KComboBox* cPriority; - QStringList sPriority; - QCheckBox* cUseVFATNames; - QStringList sConflictHandling; + TQStringList sPriority; + TQCheckBox* cUseVFATNames; + TQStringList sConflictHandling; KComboBox* cConflictHandling; KIntSpinBox* iNumFiles; KIntSpinBox* iUpdateDelay; - QCheckBox* cAskForNewOptions; - QCheckBox* cExecuteUserScript; + TQCheckBox* cAskForNewOptions; + TQCheckBox* cExecuteUserScript; Config* config; - int profileIndex( const QString& string ); - int formatIndex( const QString& string ); + int profileIndex( const TQString& string ); + int formatIndex( const TQString& string ); public slots: void resetDefaults(); |