summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-03-08 00:49:32 +0100
committerLuboš Luňák <l.lunak@suse.cz>2012-03-12 13:35:57 +0100
commit3f765e5bb2955683fc2db10f630365a4c35416d3 (patch)
tree005cbfefc4547529d7a1e416b657d44c6e1e8308 /framework
parent56e4153e2cbee8d66659e0c59690ef8911ad090a (diff)
replace usage of OUString::replace*AsciiL() with string literal overloads
Diffstat (limited to 'framework')
-rw-r--r--framework/source/services/autorecovery.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/framework/source/services/autorecovery.cxx b/framework/source/services/autorecovery.cxx
index eb534842cf15..9edec64f4b63 100644
--- a/framework/source/services/autorecovery.cxx
+++ b/framework/source/services/autorecovery.cxx
@@ -3510,8 +3510,7 @@ void AutoRecovery::impl_showFullDiscError()
ErrorBox dlgError(
0, WB_OK,
- sMsg.replaceAllAsciiL(
- RTL_CONSTASCII_STRINGPARAM("%PATH"), sBackupPath));
+ sMsg.replaceAll("%PATH", sBackupPath));
dlgError.SetButtonText(dlgError.GetButtonId(0), sBtn);
dlgError.Execute();
}