diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-08 13:46:27 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-10 11:39:53 +0900 |
commit | 6d9f250db7d9fa11a554d1045703da36fde41973 (patch) | |
tree | b79af5b615aad4eb0333d5f4e020d17170447ce1 /kommander/editor/actionlistview.h | |
parent | 6f9718f5603d163770d6a73f6e341d84aa1f1234 (diff) | |
download | tdewebdev-r14.1.4.tar.gz tdewebdev-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 4b6836187ba1d0ee85b6be44284639b5bccc8b88)
Diffstat (limited to 'kommander/editor/actionlistview.h')
-rw-r--r-- | kommander/editor/actionlistview.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kommander/editor/actionlistview.h b/kommander/editor/actionlistview.h index fa13b2d2..41dfa40c 100644 --- a/kommander/editor/actionlistview.h +++ b/kommander/editor/actionlistview.h @@ -30,13 +30,13 @@ public: ActionItem( TQListView *lv, bool group ) : TQListViewItem( lv ), a( group ? 0 : new QDesignerAction( 0 ) ), - g( group ? new QDesignerActionGroup( 0 ) : 0 ) { setDragEnabled( TRUE ); } + g( group ? new QDesignerActionGroup( 0 ) : 0 ) { setDragEnabled( true ); } ActionItem( TQListView *lv, TQAction *ac ); ActionItem( TQListViewItem *i, TQAction *ac ); - ActionItem( ActionItem *parent, bool group = FALSE ) + ActionItem( ActionItem *parent, bool group = false ) : TQListViewItem( parent ), a( group ? 0 : new QDesignerAction( parent->actionGroup() ) ), - g( group ? new QDesignerActionGroup( parent->actionGroup() ) : 0 ) { setDragEnabled( TRUE ); moveToEnd(); } + g( group ? new QDesignerActionGroup( parent->actionGroup() ) : 0 ) { setDragEnabled( true ); moveToEnd(); } QDesignerAction *action() const { return a; } QDesignerActionGroup *actionGroup() const { return g; } |