summaryrefslogtreecommitdiffstats
path: root/libkcal/tests
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-27 16:55:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-29 22:58:05 +0900
commita88d4d648a4ae2d7d7abd23916b49b41c1a867f3 (patch)
tree73aacc657e135ab179010d102fdbd7a0a9edc40d /libkcal/tests
parent409b67ac0559a06dc58da81fc90f0ba959d6068c (diff)
downloadtdepim-a88d4d648a4ae2d7d7abd23916b49b41c1a867f3.tar.gz
tdepim-a88d4d648a4ae2d7d7abd23916b49b41c1a867f3.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 8f878546e0a859e78dfc2c6ff7f08507347a76ea)
Diffstat (limited to 'libkcal/tests')
-rw-r--r--libkcal/tests/fbrecurring.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libkcal/tests/fbrecurring.cpp b/libkcal/tests/fbrecurring.cpp
index be70a7c8..e4678a54 100644
--- a/libkcal/tests/fbrecurring.cpp
+++ b/libkcal/tests/fbrecurring.cpp
@@ -20,7 +20,7 @@ int main()
event1->setDtStart( TQDateTime(TQDate(2006,1,1), TQTime(12,0,0)) );
//event1->setDuration(60*60);
event1->setDtEnd( TQDateTime(TQDate(2006,1,1), TQTime(13,0,0)) );
- event1->setFloats(FALSE);
+ event1->setFloats(false);
event1->recurrence()->setDaily( 1 );
//event1->recurrence()->setDuration( 2 );
event1->recurrence()->setEndDateTime( TQDateTime(TQDate(2006,1,3), TQTime(13,0,0)) );
@@ -32,7 +32,7 @@ int main()
event2->setDtStart( TQDateTime(TQDate(2006,1,1), TQTime(13,0,0)) );
//event2->setDuration(60*60);
event2->setDtEnd( TQDateTime(TQDate(2006,1,1), TQTime(14,0,0)) );
- event2->setFloats(FALSE);
+ event2->setFloats(false);
event2->recurrence()->setDaily( 1 );
//event2->recurrence()->setDuration( 3 );
event2->recurrence()->setEndDateTime( TQDateTime(TQDate(2006,1,4), TQTime(13,0,0)) );