diff options
| author | Steve M. Robbins <smr@sumost.ca> | 2007-01-12 04:56:34 +0000 |
|---|---|---|
| committer | Steve M. Robbins <smr@sumost.ca> | 2007-01-12 04:56:34 +0000 |
| commit | 23c7ea0eeb8eb15b310475b08cf2418ef3035ae8 (patch) | |
| tree | 30786d722a00f2ba65fe34b255f8917630cf6d7c /src/cppunit/TextTestRunner.cpp | |
| parent | f3c96127c3603c7f28f76b8996444c7d56c65dee (diff) | |
| download | cppunit-23c7ea0eeb8eb15b310475b08cf2418ef3035ae8.tar.gz | |
Arrange class initializers in correct order.
Diffstat (limited to 'src/cppunit/TextTestRunner.cpp')
| -rw-r--r-- | src/cppunit/TextTestRunner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cppunit/TextTestRunner.cpp b/src/cppunit/TextTestRunner.cpp index 8ac76c6..1534ec0 100644 --- a/src/cppunit/TextTestRunner.cpp +++ b/src/cppunit/TextTestRunner.cpp @@ -18,9 +18,9 @@ CPPUNIT_NS_BEGIN * \param outputter used to print text result. Owned by the runner. */ TextTestRunner::TextTestRunner( Outputter *outputter ) - : m_outputter( outputter ) - , m_result( new TestResultCollector() ) + : m_result( new TestResultCollector() ) , m_eventManager( new TestResult() ) + , m_outputter( outputter ) { if ( !m_outputter ) m_outputter = new TextOutputter( m_result, stdCOut() ); |
