diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-09-12 23:55:06 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-09-12 23:55:06 -0400 |
commit | a60b10593d206569acc315a32f1e6d66039bf863 (patch) | |
tree | 6655f33af8dd3659fe01986bf6f69b76b5a9e7bc /sc | |
parent | 8d74cabd80634187ceaea1f7d8c5b2b59eb21add (diff) |
No need to use += to initialize m_aFileRoot.
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/filters-test.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/unit/filters-test.cxx b/sc/qa/unit/filters-test.cxx index 569ec7d415db..96845b570e24 100644 --- a/sc/qa/unit/filters-test.cxx +++ b/sc/qa/unit/filters-test.cxx @@ -520,8 +520,8 @@ FiltersTest::FiltersTest() if (pSrcRoot[1] == ':') m_aSrcRoot += rtl::OUString::createFromAscii( "/" ); #endif - m_aSrcRoot += rtl::OUString::createFromAscii( pSrcRoot ); - m_aFileRoot += rtl::OUString::createFromAscii( pSrcRoot ); + m_aFileRoot = rtl::OUString::createFromAscii( pSrcRoot ); + m_aSrcRoot += m_aFileRoot; } void FiltersTest::setUp() |