diff options
Diffstat (limited to 'examples/tablet/scribble.cpp')
-rw-r--r-- | examples/tablet/scribble.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tablet/scribble.cpp b/examples/tablet/scribble.cpp index b3a98190c..5cd6e36d4 100644 --- a/examples/tablet/scribble.cpp +++ b/examples/tablet/scribble.cpp @@ -96,14 +96,14 @@ void Scribble::slotSave() { TQPopupMenu *menu = new TQPopupMenu( 0 ); TQIntDict<TQString> formats; - formats.setAutoDelete( TRUE ); + formats.setAutoDelete( true ); for ( unsigned int i = 0; i < TQImageIO::outputFormats().count(); i++ ) { TQString str = TQString( TQImageIO::outputFormats().at( i ) ); formats.insert( menu->insertItem( TQString( "%1..." ).arg( str ) ), new TQString( str ) ); } - menu->setMouseTracking( TRUE ); + menu->setMouseTracking( true ); int id = menu->exec( bSave->mapToGlobal( TQPoint( 0, bSave->height() + 1 ) ) ); if ( id != -1 ) { |