summaryrefslogtreecommitdiffstats
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>2011-05-12 18:56:53 -0300
commit0c4fbcf5aded6780508084604a7f5059d8e7ea72 (patch)
tree9154f77a02131f7c5e26045a33be859ece80e557 /plugins/customwidget.h
parent4d90463624d27fd80b59d68d69ef17e7b1b2e869 (diff)
downloadpyside-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.h2
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;
};