summaryrefslogtreecommitdiffstats
path: root/src/modules/options
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-22 14:06:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-23 10:40:15 +0900
commite7c7a00cc24697ba5ce25a236089608091975f5a (patch)
tree85fb5906cd3c781cdb5f26b09920860e49e31bb4 /src/modules/options
parenta2bd363864dea4771da98b4c6f7ba85ca75a3784 (diff)
downloadkvirc-e7c7a00c.tar.gz
kvirc-e7c7a00c.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 291b4f5da2f98283b7c98ee90401df7c3cb34dad)
Diffstat (limited to 'src/modules/options')
-rw-r--r--src/modules/options/libkvioptions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/options/libkvioptions.cpp b/src/modules/options/libkvioptions.cpp
index ea27a764..bdca2099 100644
--- a/src/modules/options/libkvioptions.cpp
+++ b/src/modules/options/libkvioptions.cpp
@@ -226,7 +226,7 @@ static bool options_kvs_cmd_edit(KviKvsModuleCommandCall * c)
// a trick for the dialog covering the splash screen before the time (this is prolly a WM or TQt bug)
if(g_pSplashScreen)
{
- if(g_pSplashScreen->isVisible()) // another bug: this ALWAYS RETURNS TRUE, even if the splash was hidden by a mouse click...
+ if(g_pSplashScreen->isVisible()) // another bug: this always returns true, even if the splash was hidden by a mouse click...
{
TQObject::connect(g_pSplashScreen,TQ_SIGNAL(destroyed()),wc,TQ_SLOT(show()));
return true;