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/cuesheeteditor.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/cuesheeteditor.h')
-rwxr-xr-x | src/cuesheeteditor.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cuesheeteditor.h b/src/cuesheeteditor.h index db5d986..7d1e663 100755 --- a/src/cuesheeteditor.h +++ b/src/cuesheeteditor.h @@ -18,18 +18,19 @@ class KPushButton; class CuesheetEditor : public KDialog { Q_OBJECT + TQ_OBJECT public: /** * Default Constructor */ - CuesheetEditor( QWidget* parent=0, const char* name=0, bool modal=true, WFlags f=0 ); + CuesheetEditor( TQWidget* tqparent=0, const char* name=0, bool modal=true, WFlags f=0 ); /** * Default Destructor */ virtual ~CuesheetEditor(); - void setContent( const QString& text ) { tTextEdit->setText( text ); } + void setContent( const TQString& text ) { tTextEdit->setText( text ); } private slots: void help(); |