diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:28:35 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 19:00:50 +0900 |
commit | 4239ec917e4a66a6264b4ba732489ba88fad361a (patch) | |
tree | 40b37f39c8f1fd7ee5e19d5b3f1614f730ecea48 /src/kbfxspinxscrollbar.cpp | |
parent | 27a604dfeecd599c5fc910683eabecfca6957f82 (diff) | |
download | kbfx-4239ec91.tar.gz kbfx-4239ec91.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 3233d6a066667673e676dee95db7ca1419087018)
Diffstat (limited to 'src/kbfxspinxscrollbar.cpp')
-rw-r--r-- | src/kbfxspinxscrollbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kbfxspinxscrollbar.cpp b/src/kbfxspinxscrollbar.cpp index eb6a174..e3abce8 100644 --- a/src/kbfxspinxscrollbar.cpp +++ b/src/kbfxspinxscrollbar.cpp @@ -61,7 +61,7 @@ KbfxSpinxScrollBar::paintEvent ( TQPaintEvent * pe ) p.drawPixmap ( TQRect ( 0, 0, m_normal.width (), m_normal.height () ), m_normal ); p.setPen ( TQColor ( 255,255,255 ) ); - if ( m_pressed == false ) + if ( !m_pressed ) p.setBrush ( TQColor ( 255,255,255 ) ); else p.setBrush ( TQColor ( 0,0,0 ) ); |