summaryrefslogtreecommitdiffstats
path: root/src/testlib/qtestdata.h
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-08-26 18:10:08 +1000
committerQt by Nokia <qt-info@nokia.com>2011-08-29 06:49:07 +0200
commitcf058d482363ff4823f319e118dde913fd7d9c5d (patch)
tree80df5c2fcbfa9af9ef6af3f56ffc58ab1c4b2f65 /src/testlib/qtestdata.h
parentf4d721fccb29e5cb5f43cb0e3f8441f0cb159083 (diff)
Remove default params from QTestData constructor
The constructor asserts if either parameter is null, so having defaults seems to be pointless. Change-Id: I8cec52e17e5f94458e8d8323855eaed6433686e7 Reviewed-on: http://codereview.qt.nokia.com/3644 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'src/testlib/qtestdata.h')
-rw-r--r--src/testlib/qtestdata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testlib/qtestdata.h b/src/testlib/qtestdata.h
index b964ec1dcc..02ee03ff7d 100644
--- a/src/testlib/qtestdata.h
+++ b/src/testlib/qtestdata.h
@@ -69,7 +69,7 @@ public:
private:
friend class QTestTable;
- QTestData(const char *tag = 0, QTestTable *parent = 0);
+ QTestData(const char *tag, QTestTable *parent);
Q_DISABLE_COPY(QTestData)