summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/actionlistview.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/actionlistview.h')
-rw-r--r--kdevdesigner/designer/actionlistview.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdevdesigner/designer/actionlistview.h b/kdevdesigner/designer/actionlistview.h
index a3910c5b..9c213c99 100644
--- a/kdevdesigner/designer/actionlistview.h
+++ b/kdevdesigner/designer/actionlistview.h
@@ -35,24 +35,24 @@ class ActionItem : public TQListViewItem
public:
ActionItem( TQListView *lv, bool group )
: TQListViewItem( lv ),
- a( group ? 0 : new TQDesignerAction( 0 ) ),
- g( group ? new TQDesignerActionGroup( 0 ) : 0 ) { setDragEnabled( TRUE ); }
+ a( group ? 0 : new QDesignerAction( 0 ) ),
+ g( group ? new QDesignerActionGroup( 0 ) : 0 ) { setDragEnabled( TRUE ); }
ActionItem( TQListView *lv, TQAction *ac );
ActionItem( TQListViewItem *i, TQAction *ac );
ActionItem( ActionItem *tqparent, bool group = FALSE )
: TQListViewItem( tqparent ),
- a( group ? 0 : new TQDesignerAction( tqparent->actionGroup() ) ),
- g( group ? new TQDesignerActionGroup( tqparent->actionGroup() ) : 0 ) { setDragEnabled( TRUE ); moveToEnd(); }
+ a( group ? 0 : new QDesignerAction( tqparent->actionGroup() ) ),
+ g( group ? new QDesignerActionGroup( tqparent->actionGroup() ) : 0 ) { setDragEnabled( TRUE ); moveToEnd(); }
- TQDesignerAction *action() const { return a; }
- TQDesignerActionGroup *actionGroup() const { return g; }
+ QDesignerAction *action() const { return a; }
+ QDesignerActionGroup *actionGroup() const { return g; }
private:
void moveToEnd();
private:
- TQDesignerAction *a;
- TQDesignerActionGroup *g;
+ QDesignerAction *a;
+ QDesignerActionGroup *g;
};