diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-13 09:38:34 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-15 20:09:38 +0900 |
| commit | ca275a6386d2ea3b95129ce78695865a3523153b (patch) | |
| tree | 928f442cdcd715bb0ece379b605cfb4a7ef1c035 /tdeio/misc | |
| parent | 3afb7eb4e984562dff3addf2c6399c19262497f0 (diff) | |
| download | tdelibs-ca275a63.tar.gz tdelibs-ca275a63.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ad58630b34fc61754c763cf951004ef27e38d33d)
Diffstat (limited to 'tdeio/misc')
| -rw-r--r-- | tdeio/misc/uiserver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeio/misc/uiserver.cpp b/tdeio/misc/uiserver.cpp index 05f11fd06..ff06bc751 100644 --- a/tdeio/misc/uiserver.cpp +++ b/tdeio/misc/uiserver.cpp @@ -596,7 +596,7 @@ UIServer::UIServer() // setup toolbar toolBar()->insertButton("edit-delete", TOOL_CANCEL, TQ_SIGNAL(clicked()), this, - TQ_SLOT(slotCancelCurrent()), FALSE, i18n("Cancel")); + TQ_SLOT(slotCancelCurrent()), false, i18n("Cancel")); toolBar()->insertButton("configure", TOOL_CONFIGURE, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotConfigure()), true, i18n("Settings...")); @@ -1135,11 +1135,11 @@ void UIServer::slotSelection() { for ( ; it.current(); ++it ) { if ( it.current()->isSelected() ) { - toolBar()->setItemEnabled( TOOL_CANCEL, TRUE); + toolBar()->setItemEnabled( TOOL_CANCEL, true); return; } } - toolBar()->setItemEnabled( TOOL_CANCEL, FALSE); + toolBar()->setItemEnabled( TOOL_CANCEL, false); } // This code is deprecated, slaves go to Observer::openPassDlg now, |
