aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/customwidget.h
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2011-05-12 18:56:53 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:54:21 -0300
commit5f80e31958a7d950317f967ad56e9dbc996fa9e3 (patch)
tree18c370f3330568a13abf97a0f84c6f6bb845efd7 /plugins/customwidget.h
parentc8f5fa07fea810e448982f7ebac50533e457aa9c (diff)
Be compatible with Qt4.5, i.e. no QScopedPointer.
Diffstat (limited to 'plugins/customwidget.h')
-rw-r--r--plugins/customwidget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/customwidget.h b/plugins/customwidget.h
index 00393a1d5..2f2636345 100644
--- a/plugins/customwidget.h
+++ b/plugins/customwidget.h
@@ -51,7 +51,7 @@ public:
void initialize(QDesignerFormEditorInterface *core);
private:
- QScopedPointer<PyCustomWidgetPrivate> m_data;
+ PyCustomWidgetPrivate* m_data;
QString m_name;
};