diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 14:06:03 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 14:27:39 +0900 |
| commit | 291b4f5da2f98283b7c98ee90401df7c3cb34dad (patch) | |
| tree | a28eb1a3c46756a6c6dbf3cdaa7bd88807d237c8 /src/modules/torrent | |
| parent | 1f1b292b68c4fe5d4843dba00eff77b431e6bc12 (diff) | |
| download | kvirc-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.cpp | 2 | ||||
| -rw-r--r-- | src/modules/torrent/tc_statusbarapplet.cpp | 2 |
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"); |
