[Libreoffice-commits] core.git: 2 commits - editeng/source officecfg/registry

Gabor Kelemen (via logerrit) logerrit at kemper.freedesktop.org
Thu Jun 10 11:55:55 UTC 2021


 editeng/source/rtf/svxrtf.cxx                                  |    6 ------
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |    8 ++++++++
 2 files changed, 8 insertions(+), 6 deletions(-)

New commits:
commit 3882a1811155415cba63ffc08f0f4863c0dbb3b7
Author:     Gabor Kelemen <kelemen.gabor2 at nisz.hu>
AuthorDate: Wed Jun 2 00:13:28 2021 +0200
Commit:     Balazs Varga <varga.balazs3 at nisz.hu>
CommitDate: Thu Jun 10 13:55:13 2021 +0200

    tdf#142612 Replace Show Formula command shortcut for Hungarian
    
    Use the Excel-compatible shortcut that can be entered with
    Hungarian keyboard layout on Windows. Backtick is AltGr+7
    which does not work correctly when combined with Ctrl.
    
    Change-Id: I9f5da857a041733c63c124b3aff3d1834f8405f7
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116562
    Tested-by: Jenkins
    Reviewed-by: Balazs Varga <varga.balazs3 at nisz.hu>

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index 435e29ae96c6..8e7f749bc096 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -1167,10 +1167,18 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some emoji thing
             <value xml:lang="en-US">.uno:SuperScript</value>
           </prop>
         </node>
+        <node oor:name="POINT_MOD2" oor:op="replace">
+          <prop oor:name="Command">
+            <value xml:lang="x-no-translate">I10N SHORTCUTS - NO TRANSLATE</value>
+            <!-- tdf#142612 Replace shortcut from Ctrl + ` to Alt + . for Hungarian only -->
+            <value xml:lang="hu" install:module="unxwnt">.uno:ToggleFormula</value>
+          </prop>
+        </node>
         <node oor:name="QUOTELEFT_MOD1" oor:op="replace">
           <prop oor:name="Command">
             <value xml:lang="x-no-translate">I10N SHORTCUTS - NO TRANSLATE</value>
             <value xml:lang="en-US" install:module="unxwnt">.uno:ToggleFormula</value>
+            <value xml:lang="hu" install:module="unxwnt"></value>
           </prop>
         </node>
         <node oor:name="QUOTELEFT_MOD3" oor:op="replace">
commit 5bd31b7116abbb61f330783ab12aa302f9e8c43c
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jun 10 09:54:20 2021 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Jun 10 13:55:02 2021 +0200

    cid#1485166 silence Uninitialized scalar variable harder
    
    Change-Id: Ic9d841109cbcc1201e13cebea423139fd760c680
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116966
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/editeng/source/rtf/svxrtf.cxx b/editeng/source/rtf/svxrtf.cxx
index e94159e29e77..fe1f18adcb0d 100644
--- a/editeng/source/rtf/svxrtf.cxx
+++ b/editeng/source/rtf/svxrtf.cxx
@@ -943,9 +943,6 @@ SvxRTFItemStackType::SvxRTFItemStackType(
     , nEndCnt(nSttCnt)
     , nStyleNo(0)
 {
-#if defined(__COVERITY__)
-    mxEndNodeIdx = mxStartNodeIdx;
-#endif
 }
 
 SvxRTFItemStackType::SvxRTFItemStackType(
@@ -962,9 +959,6 @@ SvxRTFItemStackType::SvxRTFItemStackType(
     , nEndCnt(nSttCnt)
     , nStyleNo(rCpy.nStyleNo)
 {
-#if defined(__COVERITY__)
-    mxEndNodeIdx = mxStartNodeIdx;
-#endif
     aAttrSet.SetParent( &rCpy.aAttrSet );
     if( bCopyAttr )
         aAttrSet.Put( rCpy.aAttrSet );


More information about the Libreoffice-commits mailing list