diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-20 11:46:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-04-02 16:50:04 +0900 |
commit | a1413410ddfec18d3ba95f7a844398ec2d8544c5 (patch) | |
tree | 11a6470833b1d43dd87233b7353ee82c485afccf /src/modules | |
parent | fa9080a8169fe09e360a9353aae9819093f12f71 (diff) | |
download | kvirc-a1413410ddfec18d3ba95f7a844398ec2d8544c5.tar.gz kvirc-a1413410ddfec18d3ba95f7a844398ec2d8544c5.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit f887a3ee8f51b158ffb32d88e1489a6f2e0a9dbb)
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; } |