diff options
author | Timothy Pearson <[email protected]> | 2012-02-14 21:12:05 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-14 21:12:05 -0600 |
commit | 17fa0266197f917cbedd25e957c0a4e0922adb78 (patch) | |
tree | 99955d8a1c279f0c9cae25cbe6e09ad1cd40895b /src | |
parent | 865bb406a1161cf415ee1e1f11efd4af72256bee (diff) | |
download | soundkonverter-17fa0266197f917cbedd25e957c0a4e0922adb78.tar.gz soundkonverter-17fa0266197f917cbedd25e957c0a4e0922adb78.zip |
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'src')
-rwxr-xr-x | src/replaygainscanner.cpp | 2 | ||||
-rwxr-xr-x | src/soundkonverter.cpp | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/replaygainscanner.cpp b/src/replaygainscanner.cpp index 2bafc9e..0e34b88 100755 --- a/src/replaygainscanner.cpp +++ b/src/replaygainscanner.cpp @@ -168,7 +168,7 @@ void ReplayGainScanner::showDirDialog() DirDialog *dialog = new DirDialog( config, DirDialog::ReplayGain, this, "DirDialog" ); - Q_CHECK_PTR( dialog ); + TQ_CHECK_PTR( dialog ); if( dialog->exec() ) { emit addDir( dialog->directory, dialog->selectedFileTypes, dialog->recursive ); diff --git a/src/soundkonverter.cpp b/src/soundkonverter.cpp index dd7dcd9..61e3561 100755 --- a/src/soundkonverter.cpp +++ b/src/soundkonverter.cpp @@ -347,7 +347,7 @@ void soundKonverter::openArgFiles( const TQStringList &files ) TQT_TQOBJECT(fileList), TQT_SLOT(addFiles(TQStringList)) ); - Q_CHECK_PTR( dialog ); + TQ_CHECK_PTR( dialog ); if( profile != "" ) { dialog->setProfile( profile ); @@ -511,7 +511,7 @@ void soundKonverter::showDirDialog() DirDialog *dialog = new DirDialog( config, DirDialog::Convert, this, "DirDialog" ); - Q_CHECK_PTR( dialog ); + TQ_CHECK_PTR( dialog ); if( dialog->exec() ) { fileList->addDir( dialog->directory, dialog->selectedFileTypes, dialog->recursive ); @@ -535,7 +535,7 @@ void soundKonverter::showCdDialog( bool intern ) // TQT_TQOBJECT(fileList), TQT_SLOT(addFiles(TQStringList)) // ); - Q_CHECK_PTR( dialog ); + TQ_CHECK_PTR( dialog ); if( profile != "" ) { dialog->setProfile( profile ); @@ -590,7 +590,7 @@ void soundKonverter::showCdDialog( bool intern ) device = ""; - Q_CHECK_PTR( dialog ); + TQ_CHECK_PTR( dialog ); if( !dialog->noCD ) { @@ -696,7 +696,7 @@ void soundKonverter::showConfigDialog() { ConfigDialog *dialog = new ConfigDialog( config, this, "ConfigDialog", ConfigDialog::Page(configStartPage) ); - Q_CHECK_PTR( dialog ); + TQ_CHECK_PTR( dialog ); //dialog->setGeometry( frameGeometry() ); dialog->resize( size() ); @@ -724,7 +724,7 @@ void soundKonverter::showConfigEnvironmentPage() // { // AboutPlugins *dialog = new AboutPlugins( config, this, "AboutPlugins" ); // -// Q_CHECK_PTR( dialog ); +// TQ_CHECK_PTR( dialog ); // // dialog->exec(); // |