summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutoUicInterface/mywidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutoUicInterface/mywidget.h')
-rw-r--r--Tests/QtAutoUicInterface/mywidget.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/QtAutoUicInterface/mywidget.h b/Tests/QtAutoUicInterface/mywidget.h
index fc49e80..c23e55d 100644
--- a/Tests/QtAutoUicInterface/mywidget.h
+++ b/Tests/QtAutoUicInterface/mywidget.h
@@ -16,9 +16,10 @@ class MyWidget : public QWidget
Q_OBJECT
public:
explicit MyWidget(QWidget* parent = 0);
+ ~MyWidget();
private:
- const std::auto_ptr<Ui::MyWidget> ui;
+ Ui::MyWidget* ui;
};
#endif