https://bugs.freedesktop.org/show_bug.cgi?id=71714

Michael Stahl <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
           Assignee|[email protected] |[email protected]
                   |desktop.org                 |
                 CC|                            |[email protected],
                   |                            |[email protected]
            Summary|EDITING: Small capitals are |EDITING: Small capitals
                   |showed like capitals in     |rendered as full-sized
                   |editor                      |capitals

--- Comment #8 from Michael Stahl <[email protected]> ---
commit d908422f5763ed8ea79af81336ca564f46435baf
Author:     Caolán McNamara <[email protected]>
AuthorDate: Thu Sep 12 10:38:48 2013 +0100

    Related: fdo#38838 remove XubString alias

... and the reason is really really subtle.

-    const XubString& rOldText = rDo.GetInf().GetText();
+    const OUString& rOldText = rDo.GetInf().GetText();
     rDo.GetInf().SetText( aTxt );

That used to _copy_ the string, but now it just references the member,
and so the SetText(aTxt) below overwrites rOldText.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to