summaryrefslogtreecommitdiffstats
path: root/tests/auto/qitemeditorfactory
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2009-07-29 09:49:26 +1000
committerRohan McGovern <rohan.mcgovern@nokia.com>2009-07-29 09:49:26 +1000
commite0238a6d8a6a567dbdf598983dedbe4a58a9ef2d (patch)
tree64e158abf55ebdcb50aade0af52e1e92e53c3e16 /tests/auto/qitemeditorfactory
parent46a78065b4f971d58f91b7eddb7487529ce153c5 (diff)
Fixed compile of tst_qitemeditorfactory.
Diffstat (limited to 'tests/auto/qitemeditorfactory')
-rw-r--r--tests/auto/qitemeditorfactory/tst_qitemeditorfactory.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/qitemeditorfactory/tst_qitemeditorfactory.cpp b/tests/auto/qitemeditorfactory/tst_qitemeditorfactory.cpp
index d9a7d56f4a..e235ff517e 100644
--- a/tests/auto/qitemeditorfactory/tst_qitemeditorfactory.cpp
+++ b/tests/auto/qitemeditorfactory/tst_qitemeditorfactory.cpp
@@ -59,13 +59,13 @@ void tst_QItemEditorFactory::createEditor()
QCOMPARE(w->metaObject()->className(), "QExpandingLineEdit");
}
-void tst_QItemEditorFactory::createCustomEditor()
+//we make it inherit from QObject so that we can use QPointer
+class MyEditor : public QObject, public QStandardItemEditorCreator<QDoubleSpinBox>
{
- //we make it inherit from QObject so that we can use QPointer
- class MyEditor : public QObject, public QStandardItemEditorCreator<QDoubleSpinBox>
- {
- };
+};
+void tst_QItemEditorFactory::createCustomEditor()
+{
QPointer<MyEditor> creator = new MyEditor;
QPointer<MyEditor> creator2 = new MyEditor;