summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-30 19:08:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-02 16:37:20 +0900
commit1804ea562a3d8f82ccdff76c3eb191d08bf4b6dc (patch)
tree0ee680b756e4071b2f72452588583fdc2a429158
parent2977bfabfe66bc3ddd9b4eb1cb9f42a3d39db66a (diff)
downloadtdeio-umountwrapper-1804ea56.tar.gz
tdeio-umountwrapper-1804ea56.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 4f907f87f1c4eb4d89cedff195bf6c6cc64efe3b)
-rw-r--r--src/tdeio_umountwrapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tdeio_umountwrapper.cpp b/src/tdeio_umountwrapper.cpp
index fde866d..28b41f8 100644
--- a/src/tdeio_umountwrapper.cpp
+++ b/src/tdeio_umountwrapper.cpp
@@ -45,7 +45,7 @@ tdeio_umountwrapper::tdeio_umountwrapper(const TQString& url)
TQTimer *t = new TQTimer(this);
connect(t, TQ_SIGNAL(timeout()), TQ_SLOT(progressAdvance()));
- t->start(10, FALSE);
+ t->start(10, false);
TDEProcess *p = new TDEProcess(this);
*p << "tdeio_media_mounthelper";