diff options
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/dialog/libkvidialog.cpp | 4 | ||||
-rw-r--r-- | src/modules/setup/setupwizard.cpp | 2 | ||||
-rw-r--r-- | src/modules/snd/libkvisnd.cpp | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/dialog/libkvidialog.cpp b/src/modules/dialog/libkvidialog.cpp index ec482051..1e069716 100644 --- a/src/modules/dialog/libkvidialog.cpp +++ b/src/modules/dialog/libkvidialog.cpp @@ -529,7 +529,7 @@ void KviKvsCallbackFileDialog::done(int code) g_pApp->collectGarbage(this); // calling dialog.unload here WILL lead to a sigsegv (this is SURE - // with a lot of qt versions that have the ugly file dialog "accept before this reference" bug) + // with a lot of tqt versions that have the ugly file dialog "accept before this reference" bug) // to avoid it, we can execute the callback triggered by a timer... // ... umpf ... execute(¶ms); @@ -660,7 +660,7 @@ void KviKvsCallbackImageDialog::done(int code) g_pApp->collectGarbage(this); // calling dialog.unload here WILL lead to a sigsegv (this is SURE - // with a lot of qt versions that have the ugly file dialog "accept before this reference" bug) + // with a lot of tqt versions that have the ugly file dialog "accept before this reference" bug) // to avoid it, we can execute the callback triggered by a timer... // ... umpf ... execute(¶ms); diff --git a/src/modules/setup/setupwizard.cpp b/src/modules/setup/setupwizard.cpp index 355874ec..207704c9 100644 --- a/src/modules/setup/setupwizard.cpp +++ b/src/modules/setup/setupwizard.cpp @@ -79,7 +79,7 @@ KviSetupPage::KviSetupPage(KviSetupWizard * w) //setBackgroundColor(TQColor(255,0,0)); - // we need this to set localized text on buttons (see QT doc/ KviTalWizard class) + // we need this to set localized text on buttons (see TQt doc/ KviTalWizard class) w->KviTalWizard::backButton()->setText(__tr2qs("< &Back")); w->KviTalWizard::nextButton()->setText(__tr2qs("&Next >")); w->KviTalWizard::finishButton()->setText(__tr2qs("Finish")); diff --git a/src/modules/snd/libkvisnd.cpp b/src/modules/snd/libkvisnd.cpp index 2449b5b0..255e5dd8 100644 --- a/src/modules/snd/libkvisnd.cpp +++ b/src/modules/snd/libkvisnd.cpp @@ -104,7 +104,7 @@ KviSoundPlayer::KviSoundPlayer() #endif //!COMPILE_ON_WINDOWS if(TQSound::isAvailable()) - m_pSoundSystemDict->insert("qt",new SoundSystemRoutine(KVI_PTR2MEMBER(KviSoundPlayer::playTQt))); + m_pSoundSystemDict->insert("tqt",new SoundSystemRoutine(KVI_PTR2MEMBER(KviSoundPlayer::playTQt))); m_pSoundSystemDict->insert("null",new SoundSystemRoutine(KVI_PTR2MEMBER(KviSoundPlayer::playNull))); @@ -203,7 +203,7 @@ void KviSoundPlayer::detectSoundSystem() if(TQSound::isAvailable()) { - KVI_OPTION_STRING(KviOption_stringSoundSystem) = "qt"; + KVI_OPTION_STRING(KviOption_stringSoundSystem) = "tqt"; return; } |