Kaydet (Commit) a60b1059 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

No need to use += to initialize m_aFileRoot.

üst 8d74cabd
...@@ -520,8 +520,8 @@ FiltersTest::FiltersTest() ...@@ -520,8 +520,8 @@ FiltersTest::FiltersTest()
if (pSrcRoot[1] == ':') if (pSrcRoot[1] == ':')
m_aSrcRoot += rtl::OUString::createFromAscii( "/" ); m_aSrcRoot += rtl::OUString::createFromAscii( "/" );
#endif #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() void FiltersTest::setUp()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment