summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/actionlistview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-08 12:59:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-10 17:35:38 +0900
commitd2d30bfbef26707f9158cbc31d5763a9a1d4ab2d (patch)
tree6d2d4502d6fbe4d6810bfb7bcf297cbf995d3db8 /kdevdesigner/designer/actionlistview.cpp
parentb9618de13e8f38c3558e9ed393a75c1f13af665c (diff)
downloadtdevelop-r14.1.4.tar.gz
tdevelop-r14.1.4.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 5198c9d3ac02aa9c7949f49e3cf374f683facb18)
Diffstat (limited to 'kdevdesigner/designer/actionlistview.cpp')
-rw-r--r--kdevdesigner/designer/actionlistview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdevdesigner/designer/actionlistview.cpp b/kdevdesigner/designer/actionlistview.cpp
index 8f99679a..d34aca5d 100644
--- a/kdevdesigner/designer/actionlistview.cpp
+++ b/kdevdesigner/designer/actionlistview.cpp
@@ -33,9 +33,9 @@
ActionListView::ActionListView( TQWidget *parent, const char *name )
: TQListView( parent, name )
{
- setShowSortIndicator( TRUE );
+ setShowSortIndicator( true );
setResizeMode( LastColumn );
- setRootIsDecorated( TRUE );
+ setRootIsDecorated( true );
connect( this, TQ_SIGNAL( contextMenuRequested( TQListViewItem *, const TQPoint &, int ) ),
this, TQ_SLOT( rmbMenu( TQListViewItem *, const TQPoint & ) ) );
}
@@ -46,7 +46,7 @@ ActionItem::ActionItem( TQListView *lv, TQAction *ac )
g = ::tqt_cast<QDesignerActionGroup*>(ac);
if ( !g )
a = ::tqt_cast<QDesignerAction*>(ac);
- setDragEnabled( TRUE );
+ setDragEnabled( true );
}
ActionItem::ActionItem( TQListViewItem *i, TQAction *ac )
@@ -55,7 +55,7 @@ ActionItem::ActionItem( TQListViewItem *i, TQAction *ac )
g = ::tqt_cast<QDesignerActionGroup*>(ac);
if ( !g )
a = ::tqt_cast<QDesignerAction*>(ac);
- setDragEnabled( TRUE );
+ setDragEnabled( true );
moveToEnd();
}