diff options
author | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-05-12 18:56:53 -0300 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-05-12 18:56:53 -0300 |
commit | 0c4fbcf5aded6780508084604a7f5059d8e7ea72 (patch) | |
tree | 9154f77a02131f7c5e26045a33be859ece80e557 /plugins/customwidget.h | |
parent | 4d90463624d27fd80b59d68d69ef17e7b1b2e869 (diff) | |
download | pyside-0c4fbcf5aded6780508084604a7f5059d8e7ea72.tar.gz pyside-0c4fbcf5aded6780508084604a7f5059d8e7ea72.tar.xz pyside-0c4fbcf5aded6780508084604a7f5059d8e7ea72.zip |
Be compatible with Qt4.5, i.e. no QScopedPointer.
Diffstat (limited to 'plugins/customwidget.h')
-rw-r--r-- | plugins/customwidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/customwidget.h b/plugins/customwidget.h index 00393a1..2f26363 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; }; |