diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-26 21:01:46 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 09:17:03 +0900 |
| commit | a94ca8479b77fd778801cc11dd4b452ea9e1aa6b (patch) | |
| tree | 126247fe63024fee0fcaa57d64eba125631cad82 /src/k9copy.cpp | |
| parent | a319b03ab98699cba44c149c3f4400dba705c9da (diff) | |
| download | k9copy-a94ca847.tar.gz k9copy-a94ca847.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 670e452260e760e9439f39460c6b236387084828)
Diffstat (limited to 'src/k9copy.cpp')
| -rw-r--r-- | src/k9copy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/k9copy.cpp b/src/k9copy.cpp index 273a90d..54e9922 100644 --- a/src/k9copy.cpp +++ b/src/k9copy.cpp @@ -57,9 +57,9 @@ k9Copy::k9Copy() // and a status bar statusBar()->show(); - statusBar()->insertFixedItem("",sbFactor,TRUE); + statusBar()->insertFixedItem("",sbFactor,true); statusBar()->setItemFixed(sbFactor,100); - statusBar()->insertItem("",sbMessage,1,FALSE); + statusBar()->insertItem("",sbMessage,1,false); statusBar()->setItemAlignment(sbMessage,AlignLeft | AlignVCenter); // Apply the create the main window and ask the mainwindow to @@ -258,7 +258,7 @@ void k9Copy::setupActions() { KStdAction::configureToolbars(this, TQ_SLOT(optionsConfigureToolbars()), actionCollection()); - setStandardToolBarMenuEnabled(TRUE); + setStandardToolBarMenuEnabled(true); createStandardStatusBarAction(); PlayTitleAction = new TDEAction(i18n("Play title"), 0, |
