diff options
Diffstat (limited to 'examples/dirview/main.cpp')
-rw-r--r-- | examples/dirview/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/dirview/main.cpp b/examples/dirview/main.cpp index 2b0a570bb..584cc74d4 100644 --- a/examples/dirview/main.cpp +++ b/examples/dirview/main.cpp @@ -29,12 +29,12 @@ int main( int argc, char ** argv ) ++i; Directory * root = new Directory( &mw, fi->filePath() ); if ( roots->count() <= 1 ) - root->setOpen( TRUE ); // be interesting + root->setOpen( true ); // be interesting } mw.resize( 400, 400 ); mw.setCaption( "TQt Example - Directory Browser" ); - mw.setAllColumnsShowFocus( TRUE ); + mw.setAllColumnsShowFocus( true ); a.setMainWidget( &mw ); mw.show(); |