summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/command.h')
-rw-r--r--kdevdesigner/designer/command.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdevdesigner/designer/command.h b/kdevdesigner/designer/command.h
index f0bfc0a6..3aa1a919 100644
--- a/kdevdesigner/designer/command.h
+++ b/kdevdesigner/designer/command.h
@@ -445,19 +445,19 @@ private:
TQString tabLabel;
};
-class TQDesignerWidgetStack;
+class QDesignerWidgetStack;
class AddWidgetStackPageCommand : public Command
{
public:
AddWidgetStackPageCommand( const TQString &n, FormWindow *fw,
- TQDesignerWidgetStack *ws );
+ QDesignerWidgetStack *ws );
void execute();
void unexecute();
Type type() const { return AddWidgetStackPage; }
private:
- TQDesignerWidgetStack *widgetStack;
+ QDesignerWidgetStack *widgetStack;
int index;
TQWidget *stackPage;
};
@@ -466,14 +466,14 @@ class DeleteWidgetStackPageCommand : public Command
{
public:
DeleteWidgetStackPageCommand( const TQString &n, FormWindow *fw,
- TQDesignerWidgetStack *ws, TQWidget *page );
+ QDesignerWidgetStack *ws, TQWidget *page );
void execute();
void unexecute();
Type type() const { return DeleteWidgetStackPage; }
private:
- TQDesignerWidgetStack *widgetStack;
+ QDesignerWidgetStack *widgetStack;
int index;
TQWidget *stackPage;
};