diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-01 22:09:14 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-08 09:01:42 +0900 |
| commit | 81ade129093a279e6537db25710583fd2bba9427 (patch) | |
| tree | a210834cbccc8aee2e9de7a8b7f41e1d31e2ced0 /examples/chart/chartform_files.cpp | |
| parent | 35ced32e331ee29fda1642616c803637952f5b22 (diff) | |
| download | tqt-81ade129.tar.gz tqt-81ade129.zip | |
Replace TRUE/FALSE with boolean values true/false - part 2
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c03a4800879ab62692e017e01c825ba12a421ad0)
Diffstat (limited to 'examples/chart/chartform_files.cpp')
| -rw-r--r-- | examples/chart/chartform_files.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/chart/chartform_files.cpp b/examples/chart/chartform_files.cpp index b9a5c4f17..27a9427c2 100644 --- a/examples/chart/chartform_files.cpp +++ b/examples/chart/chartform_files.cpp @@ -52,7 +52,7 @@ void ChartForm::load( const TQString& filename ) updateRecentFiles( filename ); drawElements(); - m_changed = FALSE; + m_changed = false; } @@ -78,7 +78,7 @@ void ChartForm::fileSave() setCaption( TQString( "Chart -- %1" ).arg( m_filename ) ); statusBar()->message( TQString( "Saved \'%1\'" ).arg( m_filename ), 2000 ); - m_changed = FALSE; + m_changed = false; } @@ -104,7 +104,7 @@ void ChartForm::filePrint() if ( m_printer->setup() ) { TQPainter painter( m_printer ); m_canvas->drawArea( TQRect( 0, 0, m_canvas->width(), m_canvas->height() ), - &painter, FALSE ); + &painter, false ); if ( !m_printer->outputFileName().isEmpty() ) statusBar()->message( TQString( "Printed \'%1\'" ). arg( m_printer->outputFileName() ), 2000 ); |
