diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-04 13:24:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-04 13:59:21 +0900 |
commit | 3f2dc73d5a565121db00f4a0f050a48910b51623 (patch) | |
tree | 3a2f1b4b88fc316e2c3d87b5e83058cb346b2852 /example/application.cpp | |
parent | 3c23eba2e71e6aebeb7ff5091fc69d050170e1d1 (diff) | |
download | tqscintilla-master.tar.gz tqscintilla-master.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'example/application.cpp')
-rw-r--r-- | example/application.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example/application.cpp b/example/application.cpp index 3352d8b..7666a7a 100644 --- a/example/application.cpp +++ b/example/application.cpp @@ -169,7 +169,7 @@ void ApplicationWindow::load( const TQString &fileName ) TQTextStream ts( &f ); e->setText( ts.read() ); - e->setModified( FALSE ); + e->setModified( false ); setCaption( fileName ); statusBar()->message( "Loaded document " + fileName, 2000 ); } @@ -194,7 +194,7 @@ void ApplicationWindow::save() t << text; f.close(); - e->setModified( FALSE ); + e->setModified( false ); setCaption( filename ); @@ -217,7 +217,7 @@ void ApplicationWindow::saveAs() void ApplicationWindow::print() { - printer->setFullPage( TRUE ); + printer->setFullPage( true ); if ( printer->setup(this) ) { // printer dialog statusBar()->message( "Printing..." ); |