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/XmlDocument.cpp | |
| parent | f3c96127c3603c7f28f76b8996444c7d56c65dee (diff) | |
| download | cppunit-23c7ea0eeb8eb15b310475b08cf2418ef3035ae8.tar.gz | |
Arrange class initializers in correct order.
Diffstat (limited to 'src/cppunit/XmlDocument.cpp')
| -rw-r--r-- | src/cppunit/XmlDocument.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cppunit/XmlDocument.cpp b/src/cppunit/XmlDocument.cpp index 8ad8575..31f9115 100644 --- a/src/cppunit/XmlDocument.cpp +++ b/src/cppunit/XmlDocument.cpp @@ -8,8 +8,8 @@ CPPUNIT_NS_BEGIN XmlDocument::XmlDocument( const std::string &encoding, const std::string &styleSheet ) - : m_rootElement( new XmlElement( "DummyRoot" ) ) - , m_styleSheet( styleSheet ) + : m_styleSheet( styleSheet ) + , m_rootElement( new XmlElement( "DummyRoot" ) ) , m_standalone( true ) { setEncoding( encoding ); |
