diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-08-02 16:37:18 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-02 19:29:44 +0200 |
commit | e9d8831d18d1120593137632a31b2dad9f8d20f7 (patch) | |
tree | acc8d8d84b4cd76095bd21b421f659def6a78df9 /svx | |
parent | fca99395ad3c3310aa04d5ff725b4a82fc17826e (diff) |
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')
-rw-r--r-- | svx/source/svdraw/svdundo.cxx | 4 |
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); } |