Date: prev next · Thread: first prev next last
2013 Archives by date, by thread · List index


Hi,

I have submitted a patch for review:

    https://gerrit.libreoffice.org/3982

To pull it, you can do:

    git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/82/3982/1

Fix fdo#32062: Math overwrites selected area when new element

We're appending the new simbol in front of the selected formula.

Change-Id: If1623b5bc1ae5c491d67b4a21c76a08c928b50b6
---
M starmath/source/edit.cxx
1 file changed, 6 insertions(+), 0 deletions(-)



diff --git a/starmath/source/edit.cxx b/starmath/source/edit.cxx
index fc88ba7..d6608db 100644
--- a/starmath/source/edit.cxx
+++ b/starmath/source/edit.cxx
@@ -714,6 +714,12 @@
 
         OSL_ENSURE( pEditView, "NULL pointer" );
         OUString aText = SM_RESSTR(nCommand);
+
+        OUString selected(pEditView->GetSelected());
+        // if we have a formula selected, apply the command around the formula
+        if (selected.getLength())
+            aText = aText.replaceAll("<?>", selected);
+
         pEditView->InsertText(aText);
 
         if (HasMark(aText))

-- 
To view, visit https://gerrit.libreoffice.org/3982
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If1623b5bc1ae5c491d67b4a21c76a08c928b50b6
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza <marcos.souza.org@gmail.com>


Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.