summaryrefslogtreecommitdiffstats
path: root/src/kchmviewwindow_qtextbrowser.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-31 15:40:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-03 10:31:18 +0900
commit705f5a5715650524a924fda398bb544dae7def3a (patch)
treed996b709b97c5681adc6cd5739c1d6f1733b20cf /src/kchmviewwindow_qtextbrowser.cpp
parent82e8cf625e7ca747149760204b36724cd980bf81 (diff)
downloadkchmviewer-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/kchmviewwindow_qtextbrowser.cpp')
-rw-r--r--src/kchmviewwindow_qtextbrowser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kchmviewwindow_qtextbrowser.cpp b/src/kchmviewwindow_qtextbrowser.cpp
index d3f1f72..6ea8b20 100644
--- a/src/kchmviewwindow_qtextbrowser.cpp
+++ b/src/kchmviewwindow_qtextbrowser.cpp
@@ -133,7 +133,7 @@ bool KCHMViewWindow_QTextBrowser::printCurrentPage( )
{
#if !defined (TQT_NO_PRINTER)
TQPrinter printer( TQPrinter::HighResolution );
- printer.setFullPage(TRUE);
+ printer.setFullPage(true);
if ( printer.setup( this ) )
{
@@ -174,7 +174,7 @@ bool KCHMViewWindow_QTextBrowser::printCurrentPage( )
printer.newPage();
page++;
}
- while (TRUE);
+ while (true);
::mainWindow->showInStatusBar( i18n( "Printing completed") );
return true;
@@ -213,7 +213,7 @@ void KCHMViewWindow_QTextBrowser::searchWord( const TQString & word, bool forwar
void KCHMViewWindow_QTextBrowser::clipSelectAll( )
{
- selectAll (TRUE);
+ selectAll (true);
}
void KCHMViewWindow_QTextBrowser::clipCopy( )