summaryrefslogtreecommitdiffstats
path: root/kicker/libkicker/simplebutton.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-25 18:08:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-05-27 10:26:17 +0900
commit7f36db4704fe1e47683ecc8e07654b4762edd725 (patch)
treeefd584e0370eaaf5540ecbd6e588f4012a212900 /kicker/libkicker/simplebutton.h
parentecaede25a924ea84ed48a164299a9d96a7976b1f (diff)
downloadtdebase-7f36db47.tar.gz
tdebase-7f36db47.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 0a439ac80bdf6ffb9cac104ad3098a321ee0403c)
Diffstat (limited to 'kicker/libkicker/simplebutton.h')
-rw-r--r--kicker/libkicker/simplebutton.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kicker/libkicker/simplebutton.h b/kicker/libkicker/simplebutton.h
index ea91e6f91..9a7dce4e8 100644
--- a/kicker/libkicker/simplebutton.h
+++ b/kicker/libkicker/simplebutton.h
@@ -31,7 +31,7 @@ class TDE_EXPORT SimpleButton : public TQButton
TQ_OBJECT
public:
- SimpleButton(TQWidget *parent, const char *name = 0, bool forceStandardCursor = FALSE);
+ SimpleButton(TQWidget *parent, const char *name = 0, bool forceStandardCursor = false);
void setPixmap(const TQPixmap &pix);
void setOrientation(TQt::Orientation orientaton);
TQSize sizeHint() const;
@@ -66,7 +66,7 @@ class TDE_EXPORT SimpleArrowButton: public SimpleButton
TQ_OBJECT
public:
- SimpleArrowButton(TQWidget *parent = 0, TQt::ArrowType arrow = TQt::UpArrow, const char *name = 0, bool forceStandardCursor = FALSE);
+ SimpleArrowButton(TQWidget *parent = 0, TQt::ArrowType arrow = TQt::UpArrow, const char *name = 0, bool forceStandardCursor = false);
virtual ~SimpleArrowButton() {};
TQSize sizeHint() const;