Kaydet (Commit) 625e173a authored tarafından Tor Lillqvist's avatar Tor Lillqvist

OUString::replace() does not replace in-place

Change-Id: I5a1d713ee8e9c913adad57b7d8fb0597f96a2db4
üst 802619d7
......@@ -196,7 +196,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
if (tmpName.isEmpty())
tmpName = "/";
else
tmpName.replace('.', '/');
tmpName = tmpName.replace('.', '/');
}
// related to task #116780# the scope is recursively
// generated. bFullScope = true
......
......@@ -188,7 +188,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
if (tmpName.isEmpty())
tmpName = "/";
else
tmpName.replace('.', '/');
tmpName = tmpName.replace('.', '/');
}
// related to task #116780# the scope is recursively
// generated. bFullScope = true
......
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