From 35ced32e331ee29fda1642616c803637952f5b22 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 30 May 2025 14:27:29 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 1 Signed-off-by: Michele Calgaro (cherry picked from commit a7f1e6e2552d9cdbb3d76bff089db522248b9a24) --- doc/html/tutorial2-07.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/tutorial2-07.html') diff --git a/doc/html/tutorial2-07.html b/doc/html/tutorial2-07.html index 540eba29f..12ad2ee74 100644 --- a/doc/html/tutorial2-07.html +++ b/doc/html/tutorial2-07.html @@ -63,7 +63,7 @@ body { background: #ffffff; color: black; } updateRecentFiles( filename ); drawElements(); - m_changed = FALSE; + m_changed = false; }

Loading a data set is very easy. We open the file and create a text @@ -90,7 +90,7 @@ draw the chart and mark it as unchanged. setCaption( TQString( "Chart -- %1" ).arg( m_filename ) ); statusBar()->message( TQString( "Saved \'%1\'" ).arg( m_filename ), 2000 ); - m_changed = FALSE; + m_changed = false; }

Saving data is equally easy. We open the file and create a text -- cgit v1.2.3