diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-17 22:24:01 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-17 22:24:01 +0900 |
commit | dd46b9bdeae872ed7682913c898931f1aa6d3d42 (patch) | |
tree | 83a29165f950f0f51ef67b342d5a79a0417643c9 /kscd/bwlednum.h | |
parent | cc7a56e1bd1694b2d37ecd46691037f02381d6d3 (diff) | |
download | tdemultimedia-dd46b9bdeae872ed7682913c898931f1aa6d3d42.tar.gz tdemultimedia-dd46b9bdeae872ed7682913c898931f1aa6d3d42.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kscd/bwlednum.h')
-rw-r--r-- | kscd/bwlednum.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kscd/bwlednum.h b/kscd/bwlednum.h index 194c5823..79497a18 100644 --- a/kscd/bwlednum.h +++ b/kscd/bwlednum.h @@ -28,7 +28,7 @@ public: ~BW_LED_Number(); void setSmallLED(bool ); // if you LED is small it might look better - // if you call setSmallLED(TRUE) + // if you call setSmallLED(true) // this sets the fore and background color of the LED // the forground defaults to yellow, the background defaults @@ -42,7 +42,7 @@ public: void setLEDoffColor(TQColor color); - // calling showOffColon(TRUE) will show the colon if not illuminated + // calling showOffColon(true) will show the colon if not illuminated // this is rather ugly -- the default is that they are not shown. void showOffColon(bool off); @@ -67,7 +67,7 @@ protected: private: bool seg_contained_in( char c, char* seg); - void drawSegment( const TQPoint &, char, TQPainter &, int, bool = FALSE ); + void drawSegment( const TQPoint &, char, TQPainter &, int, bool = false ); void drawSymbol( TQPainter *p,char s ,bool repaint); char* old_segments; |