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>
This commit is contained in:
Jason McDonald 2011-08-26 18:10:08 +10:00 committed by Qt by Nokia
parent f4d721fccb
commit cf058d4823

View File

@ -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)