summaryrefslogtreecommitdiffstats
path: root/svx/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-08-02 16:37:18 +0200
committerCaolán McNamara <caolanm@redhat.com>2013-08-02 19:29:44 +0200
commite9d8831d18d1120593137632a31b2dad9f8d20f7 (patch)
treeacc8d8d84b4cd76095bd21b421f659def6a78df9 /svx/source
parentno need for dynamic array of XubStrings (diff)
downloadcore-e9d8831d18d1120593137632a31b2dad9f8d20f7.tar.gz
core-e9d8831d18d1120593137632a31b2dad9f8d20f7.zip
get rid of last use of UniString in LibreOffice
of raw "UniString" :-), the rest use the #define UniString String alias Change-Id: I6c4ca3a6c2b425b9214691e03deda5dd1a8a11bf
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/svdraw/svdundo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdundo.cxx b/svx/source/svdraw/svdundo.cxx
index 2d478e0e25b7..f2f3b378f007 100644
--- a/svx/source/svdraw/svdundo.cxx
+++ b/svx/source/svdraw/svdundo.cxx
@@ -255,9 +255,9 @@ void SdrUndoAttrObj::ensureStyleSheetInStyleSheetPool(SfxStyleSheetBasePool& rSt
{
// re-insert remembered style which was removed in the meantime. To do this
// without assertion, do it without parent and set parent after insertion
- const UniString aParent(rSheet.GetParent());
+ const OUString aParent(rSheet.GetParent());
- rSheet.SetParent(UniString());
+ rSheet.SetParent(OUString());
rStyleSheetPool.Insert(&rSheet);
rSheet.SetParent(aParent);
}