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 /configdialog/kbfxconfigdlgabout.ui.h | |
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 'configdialog/kbfxconfigdlgabout.ui.h')
-rw-r--r-- | configdialog/kbfxconfigdlgabout.ui.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/configdialog/kbfxconfigdlgabout.ui.h b/configdialog/kbfxconfigdlgabout.ui.h index 3e7c2f5..f54dbd4 100644 --- a/configdialog/kbfxconfigdlgabout.ui.h +++ b/configdialog/kbfxconfigdlgabout.ui.h @@ -87,42 +87,42 @@ bool KbfxConfigDlgAbout::eventFilter ( TQObject *obj, TQEvent *ev ) KbfxTeamInfo->setText ( KbfxMemberTextNookie ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelNookie->setFrameShape ( TQFrame::WinPanel ); - return TRUE; + return true; } else if ( obj == KbfxPixmapLabelSiraj ) { KbfxTeamInfo->setText ( KbfxMemberTextSiraj ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelSiraj->setFrameShape ( TQFrame::WinPanel ); - return TRUE; + return true; } else if ( obj == KbfxPixmapLabelNathanael ) { KbfxTeamInfo->setText ( KbfxMemberTextNathanael ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelNathanael->setFrameShape ( TQFrame::WinPanel ); - return TRUE; + return true; } else if ( obj == KbfxPixmapLabelPhobosK ) { KbfxTeamInfo->setText ( KbfxMemberTextPhobosK ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelPhobosK->setFrameShape ( TQFrame::WinPanel ); - return TRUE; + return true; } else if ( obj == KbfxPixmapLabelJohnny ) { KbfxTeamInfo->setText ( KbfxMemberTextJohnny ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelJohnny->setFrameShape ( TQFrame::WinPanel ); - return TRUE; + return true; } else if ( obj == KbfxPixmapLabelEphracis ) { KbfxTeamInfo->setText ( KbfxMemberTextEphracis ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelEphracis->setFrameShape ( TQFrame::WinPanel ); - return TRUE; + return true; } } @@ -139,13 +139,13 @@ bool KbfxConfigDlgAbout::eventFilter ( TQObject *obj, TQEvent *ev ) { KbfxTeamInfo->setText(""); - return TRUE; + return true; } } */ return TQWidget::eventFilter ( obj, ev ); -// return FALSE; +// return false; } void KbfxConfigDlgAbout::KbfxUnmarkAllPixmaps() |