diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-31 15:40:28 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-03 10:31:18 +0900 |
commit | 705f5a5715650524a924fda398bb544dae7def3a (patch) | |
tree | d996b709b97c5681adc6cd5739c1d6f1733b20cf /src/kchmsearchtoolbar.cpp | |
parent | 82e8cf625e7ca747149760204b36724cd980bf81 (diff) | |
download | kchmviewer-r14.1.4.tar.gz kchmviewer-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 66dc020d264d1fe4ebe235e5dd7eceb863007d7c)
Diffstat (limited to 'src/kchmsearchtoolbar.cpp')
-rw-r--r-- | src/kchmsearchtoolbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kchmsearchtoolbar.cpp b/src/kchmsearchtoolbar.cpp index 2c7e272..a600f36 100644 --- a/src/kchmsearchtoolbar.cpp +++ b/src/kchmsearchtoolbar.cpp @@ -61,7 +61,7 @@ KCHMSearchAndViewToolbar::KCHMSearchAndViewToolbar( KCHMMainWindow * parent ) TQPixmap iconLocateInContent (*gIconStorage.getToolbarPixmap(KCHMIconStorage::locate_in_content)); // Create the combobox to enter the find text - m_findBox = new TQComboBox (TRUE, this); + m_findBox = new TQComboBox (true, this); m_findBox->setMinimumWidth (200); connect( m_findBox->lineEdit(), TQ_SIGNAL( returnPressed() ), this, TQ_SLOT( onReturnPressed() ) ); TQWhatsThis::add( m_findBox, i18n( "Enter here the text to search in the current page.") ); |