summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdopath.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-04 16:41:31 +0200
committerNoel Grandin <noel@peralex.com>2013-09-05 08:55:14 +0200
commit9f04bfd8d53a7640bd6f0707708401a8ac9fb386 (patch)
treee37382ef6bbaf8085bdc90c270134a5ec308ee61 /svx/source/svdraw/svdopath.cxx
parente0848f6dae86e53dac12b18120e4362957d000d2 (diff)
convert svx/* from XubString to OUString
Change-Id: Ifa063924d95bfe397bd512411a44247d4c016018
Diffstat (limited to 'svx/source/svdraw/svdopath.cxx')
-rw-r--r--svx/source/svdraw/svdopath.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdopath.cxx b/svx/source/svdraw/svdopath.cxx
index 33f0888501ea..a9a6fe5e9568 100644
--- a/svx/source/svdraw/svdopath.cxx
+++ b/svx/source/svdraw/svdopath.cxx
@@ -1000,10 +1000,10 @@ OUString ImpPathForDragAndCreate::getSpecialDragComment(const SdrDragStat& rDrag
aStr = aTmp;
// delete %O
- XubString aStr2(ImpGetResStr(STR_EditDelete));
+ OUString aStr2(ImpGetResStr(STR_EditDelete));
// UNICODE: delete point of ...
- aStr2.SearchAndReplaceAscii("%1", aStr);
+ aStr2 = aStr2.replaceFirst("%1", aStr);
return aStr2;
}