diff options
Diffstat (limited to 'kdevdesigner/designer/orderindicator.cpp')
-rw-r--r-- | kdevdesigner/designer/orderindicator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdevdesigner/designer/orderindicator.cpp b/kdevdesigner/designer/orderindicator.cpp index 2904cfbf..445e835f 100644 --- a/kdevdesigner/designer/orderindicator.cpp +++ b/kdevdesigner/designer/orderindicator.cpp @@ -39,7 +39,7 @@ OrderIndicator::OrderIndicator( int i, TQWidget* w, FormWindow *fw ) order = -1; widget = w; setBackgroundMode( NoBackground ); - setAutoMask( TRUE ); + setAutoMask( true ); setOrder( i, w ); } @@ -67,7 +67,7 @@ void OrderIndicator::setOrder( int i, TQWidget* wid ) int w = fontMetrics().width( TQString::number( i ) ) + 10; int h = fontMetrics().lineSpacing() * 3 / 2; TQFont f( font() ); - f.setBold( TRUE ); + f.setBold( true ); setFont( f ); resize( TQMAX( w, h ), h ); update(); // in case the size didn't change |