summaryrefslogtreecommitdiffstats
path: root/src/testlib/qtestdata.cpp
diff options
context:
space:
mode:
authorKent Hansen <kent.hansen@nokia.com>2011-10-06 13:25:58 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-11 16:01:45 +0200
commite5ce564b1d2f2818c36ffbabbaa558c091512e66 (patch)
tree25a8f396b796c641b5f4b49915c1d159c223abc4 /src/testlib/qtestdata.cpp
parent612ac2b8c8e0d5c67b17ad3a9a564f5a049846a6 (diff)
Rename QMetaType::construct() to create()
create() is symmetric with destroy(). Also rename the internal methods and fields to be consistent (qDeleteHelper already had the "right" name, though!). This change will allow us to use construct() and destruct() for something else: Placement new-style allocation (QTBUG-12574). The old construct() is still kept for now, until the other repositories have been updated to use create(). Change-Id: Iceb184af6cffcb0a634359cfc3516c718ba0c2f5 Reviewed-on: http://codereview.qt-project.org/6342 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'src/testlib/qtestdata.cpp')
-rw-r--r--src/testlib/qtestdata.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testlib/qtestdata.cpp b/src/testlib/qtestdata.cpp
index 6797abf1d0..404f2ce855 100644
--- a/src/testlib/qtestdata.cpp
+++ b/src/testlib/qtestdata.cpp
@@ -93,7 +93,7 @@ void QTestData::append(int type, const void *data)
d->dataCount, d->tag);
QTEST_ASSERT(false);
}
- d->data[d->dataCount] = QMetaType::construct(type, data);
+ d->data[d->dataCount] = QMetaType::create(type, data);
++d->dataCount;
}