From 9f04bfd8d53a7640bd6f0707708401a8ac9fb386 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 4 Sep 2013 16:41:31 +0200 Subject: convert svx/* from XubString to OUString Change-Id: Ifa063924d95bfe397bd512411a44247d4c016018 --- svx/source/svdraw/svdpoev.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svx/source/svdraw/svdpoev.cxx') diff --git a/svx/source/svdraw/svdpoev.cxx b/svx/source/svdraw/svdpoev.cxx index e6324da53653..8ff5f021bdfd 100644 --- a/svx/source/svdraw/svdpoev.cxx +++ b/svx/source/svdraw/svdpoev.cxx @@ -664,7 +664,7 @@ void SdrPolyEditView::MoveMarkedPoints(const Size& rSiz, bool bCopy) { bCopy=sal_False; // TODO: not yet implemented ForceUndirtyMrkPnt(); - XubString aStr(ImpGetResStr(STR_EditMove)); + OUString aStr(ImpGetResStr(STR_EditMove)); if (bCopy) aStr+=ImpGetResStr(STR_EditWithCopy); BegUndo(aStr,GetDescriptionOfMarkedPoints(),SDRREPFUNC_OBJ_MOVE); ImpTransformMarkedPoints(ImpMove,&rSiz); @@ -685,7 +685,7 @@ void SdrPolyEditView::ResizeMarkedPoints(const Point& rRef, const Fraction& xFac { bCopy=sal_False; // TODO: not yet implemented ForceUndirtyMrkPnt(); - XubString aStr(ImpGetResStr(STR_EditResize)); + OUString aStr(ImpGetResStr(STR_EditResize)); if (bCopy) aStr+=ImpGetResStr(STR_EditWithCopy); BegUndo(aStr,GetDescriptionOfMarkedPoints(),SDRREPFUNC_OBJ_RESIZE); ImpTransformMarkedPoints(ImpResize,&rRef,&xFact,&yFact); @@ -706,7 +706,7 @@ void SdrPolyEditView::RotateMarkedPoints(const Point& rRef, long nWink, bool bCo { bCopy=sal_False; // TODO: not yet implemented ForceUndirtyMrkPnt(); - XubString aStr(ImpGetResStr(STR_EditResize)); + OUString aStr(ImpGetResStr(STR_EditResize)); if (bCopy) aStr+=ImpGetResStr(STR_EditWithCopy); BegUndo(aStr,GetDescriptionOfMarkedPoints(),SDRREPFUNC_OBJ_ROTATE); double nSin=sin(nWink*nPi180); -- cgit