diff options
author | Jason McDonald <jason.mcdonald@nokia.com> | 2011-09-02 17:08:20 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2011-09-05 06:33:07 +0200 |
commit | cab90f8c8b19892b2e026d12411702dbc8c10fb9 (patch) | |
tree | 5163e3739d118b646b56cda5a48228e15ae49d6c /src/testlib/qplaintestlogger_p.h | |
parent | 91fe1fd9e8f5b040511721cb64b11772e034b265 (diff) | |
download | qtbase-cab90f8c8b19892b2e026d12411702dbc8c10fb9.tar.gz |
Pass log file name when constructing loggers.
Pass the filename when creating the logger rather than when commencing
output. This will simplify forthcoming changes for running multiple
loggers.
Change-Id: I563aa97661caf279a5dcccb1321ff3ce4725b332
Reviewed-on: http://codereview.qt.nokia.com/4116
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'src/testlib/qplaintestlogger_p.h')
-rw-r--r-- | src/testlib/qplaintestlogger_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testlib/qplaintestlogger_p.h b/src/testlib/qplaintestlogger_p.h index baa1e24828..432e900320 100644 --- a/src/testlib/qplaintestlogger_p.h +++ b/src/testlib/qplaintestlogger_p.h @@ -60,10 +60,10 @@ QT_BEGIN_NAMESPACE class QPlainTestLogger : public QAbstractTestLogger { public: - QPlainTestLogger(); + QPlainTestLogger(const char *filename); ~QPlainTestLogger(); - void startLogging(const char *filename); + void startLogging(); void stopLogging(); void enterTestFunction(const char *function); |