diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-31 15:40:28 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-31 15:48:52 +0900 |
| commit | 66dc020d264d1fe4ebe235e5dd7eceb863007d7c (patch) | |
| tree | 20ec5c89988c1ed470adf0893343f4d9c5119905 /src/kchmviewwindow_qtextbrowser.cpp | |
| parent | 0ab7a6fc13973ab74f2116c3260cec68a766f85e (diff) | |
| download | kchmviewer-66dc020d264d1fe4ebe235e5dd7eceb863007d7c.tar.gz kchmviewer-66dc020d264d1fe4ebe235e5dd7eceb863007d7c.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kchmviewwindow_qtextbrowser.cpp')
| -rw-r--r-- | src/kchmviewwindow_qtextbrowser.cpp | 6 |
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( ) |
