diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-01 22:09:14 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-08 08:53:47 +0900 |
commit | c03a4800879ab62692e017e01c825ba12a421ad0 (patch) | |
tree | 57aeff4300eb9fa64d193569f56b2d98305b49a2 /examples/drawlines/connect.cpp | |
parent | 030b165ac197ce4c2eb62c7700dc4c10604637aa (diff) | |
download | tqt-c03a4800879ab62692e017e01c825ba12a421ad0.tar.gz tqt-c03a4800879ab62692e017e01c825ba12a421ad0.zip |
Replace TRUE/FALSE with boolean values true/false - part 2
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/drawlines/connect.cpp')
-rw-r--r-- | examples/drawlines/connect.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/drawlines/connect.cpp b/examples/drawlines/connect.cpp index 2e4000944..4ac5c965f 100644 --- a/examples/drawlines/connect.cpp +++ b/examples/drawlines/connect.cpp @@ -35,7 +35,7 @@ private: TQPoint *points; // point array TQColor *colors; // color array int count; // count = number of points - bool down; // TRUE if mouse down + bool down; // true if mouse down }; @@ -48,7 +48,7 @@ ConnectWidget::ConnectWidget( TQWidget *parent, const char *name ) { setBackgroundColor( white ); // white background count = 0; - down = FALSE; + down = false; points = new TQPoint[MAXPOINTS]; colors = new TQColor[MAXCOLORS]; for ( int i=0; i<MAXCOLORS; i++ ) // init color array @@ -84,7 +84,7 @@ void ConnectWidget::paintEvent( TQPaintEvent * ) void ConnectWidget::mousePressEvent( TQMouseEvent * ) { - down = TRUE; + down = true; count = 0; // start recording points erase(); // erase widget contents } @@ -96,7 +96,7 @@ void ConnectWidget::mousePressEvent( TQMouseEvent * ) void ConnectWidget::mouseReleaseEvent( TQMouseEvent * ) { - down = FALSE; // done recording points + down = false; // done recording points update(); // draw the lines } |