summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/actioneditorimpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/actioneditorimpl.h')
-rw-r--r--kdevdesigner/designer/actioneditorimpl.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kdevdesigner/designer/actioneditorimpl.h b/kdevdesigner/designer/actioneditorimpl.h
index 439a8fb8..e510f38c 100644
--- a/kdevdesigner/designer/actioneditorimpl.h
+++ b/kdevdesigner/designer/actioneditorimpl.h
@@ -38,39 +38,39 @@ class ActionEditor : public ActionEditorBase
Q_OBJECT
public:
- ActionEditor( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
+ ActionEditor( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
void setFormWindow( FormWindow *fw );
- void updateActionName( QAction *a );
- void updateActionIcon( QAction *a );
+ void updateActionName( TQAction *a );
+ void updateActionIcon( TQAction *a );
FormWindow *form() const { return formWindow; }
bool wantToBeShown() const { return !explicitlyClosed; }
void setWantToBeShown( bool b ) { explicitlyClosed = !b; }
- void setCurrentAction( QAction *a );
- QAction *newActionEx();
+ void setCurrentAction( TQAction *a );
+ TQAction *newActionEx();
protected:
- void closeEvent( QCloseEvent *e );
+ void closeEvent( TQCloseEvent *e );
protected slots:
- void currentActionChanged( QListViewItem * );
+ void currentActionChanged( TQListViewItem * );
void deleteAction();
void newAction();
void newActionGroup();
void newDropDownActionGroup();
void connectionsClicked();
- void removeConnections( QObject *o );
+ void removeConnections( TQObject *o );
signals:
void hidden();
- void removing( QAction * );
+ void removing( TQAction * );
private:
void insertChildActions( ActionItem *i );
private:
- QAction *currentAction;
+ TQAction *currentAction;
FormWindow *formWindow;
bool explicitlyClosed;