Kaydet (Commit) ba713b5a authored tarafından Olivier Hallot's avatar Olivier Hallot

Fix mistake in type OUStringBuffer

Fix mistake in method for type OUStringBuffer
üst 71dc235a
......@@ -422,7 +422,7 @@ rtl::OUString pathToString(std::vector< rtl::OUString > const & path) {
buf.append(sal_Unicode('/'));
buf.append(*i);
}
if (buf.isEmpty()) {
if (buf.getLength() == 0) {
buf.append(sal_Unicode('/'));
}
return buf.makeStringAndClear();
......
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