summaryrefslogtreecommitdiffstats
path: root/src/modules/torrent
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-22 14:27:39 +0900
commit291b4f5da2f98283b7c98ee90401df7c3cb34dad (patch)
treea28eb1a3c46756a6c6dbf3cdaa7bd88807d237c8 /src/modules/torrent
parent1f1b292b68c4fe5d4843dba00eff77b431e6bc12 (diff)
downloadkvirc-291b4f5da2f98283b7c98ee90401df7c3cb34dad.tar.gz
kvirc-291b4f5da2f98283b7c98ee90401df7c3cb34dad.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/torrent')
-rw-r--r--src/modules/torrent/tc_ktorrentdcopinterface.cpp2
-rw-r--r--src/modules/torrent/tc_statusbarapplet.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/torrent/tc_ktorrentdcopinterface.cpp b/src/modules/torrent/tc_ktorrentdcopinterface.cpp
index 1ffd120..4d5c72d 100644
--- a/src/modules/torrent/tc_ktorrentdcopinterface.cpp
+++ b/src/modules/torrent/tc_ktorrentdcopinterface.cpp
@@ -114,7 +114,7 @@ KviKTorrentDCOPInterface::KviKTorrentDCOPInterface()
TQTimer *timer = new TQTimer(this);
connect(timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotTimer()));
- timer->start(250, FALSE);
+ timer->start(250, false);
// make sure we have a list of files,
// otherwise functions dealing would
diff --git a/src/modules/torrent/tc_statusbarapplet.cpp b/src/modules/torrent/tc_statusbarapplet.cpp
index 79ae46d..88e84c5 100644
--- a/src/modules/torrent/tc_statusbarapplet.cpp
+++ b/src/modules/torrent/tc_statusbarapplet.cpp
@@ -9,7 +9,7 @@ KviTorrentStatusBarApplet::KviTorrentStatusBarApplet(KviStatusBar *parent, KviSt
{
TQTimer *timer = new TQTimer(this);
connect(timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(update()));
- timer->start(250, FALSE);
+ timer->start(250, false);
// updateDisplay();
//
setText("torrent client");