diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-06-16 11:25:40 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2013-06-16 11:27:05 +0100 |
commit | 6a5efa567a3e822099392d22d5f5db6a02236c4b (patch) | |
tree | 8ccc48cf5a1d82d7ccb3a5bdeceb971705331e0e /sw/source | |
parent | e9911f12d1e124d1910ac2310c224e66ab365ed4 (diff) |
fdo#64925 - fix crash on paste of Arabic text on windows.
Change-Id: I4c1c5416d6ce486f257f499c39e269d1f1619add
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/text/pormulti.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/text/pormulti.cxx b/sw/source/core/text/pormulti.cxx index 3443d692fc95..05bf26f281b2 100644 --- a/sw/source/core/text/pormulti.cxx +++ b/sw/source/core/text/pormulti.cxx @@ -1830,7 +1830,7 @@ sal_Bool SwTxtFormatter::BuildMultiPortion( SwTxtFormatInfo &rInf, const OUString* pOldTxt = &(rInf.GetTxt()); const SwTwips nOldPaintOfst = rInf.GetPaintOfst(); - XubString aMultiStr( rInf.GetTxt(), 0, nMultiLen + rInf.GetIdx() ); + OUString const aMultiStr( rInf.GetTxt().copy(0, nMultiLen + rInf.GetIdx()) ); rInf.SetTxt( aMultiStr ); SwTxtFormatInfo aInf( rInf, rMulti.GetRoot(), nActWidth ); // Do we allow break cuts? The FirstMulti-Flag is evaluated during |