desktop/source/lib/init.cxx      |    1 +
 sfx2/source/control/unoctitm.cxx |    3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit c5a7ff366fd9094c3ee1aba4c016b59c5635ea9b
Author:     Hubert Figuière <h...@collabora.com>
AuthorDate: Tue May 28 17:08:07 2024 -0400
Commit:     Caolán McNamara <caolan.mcnam...@collabora.com>
CommitDate: Wed May 29 16:34:12 2024 +0200

    cool#9174 - Enable .uno:ChangeBezier
    
    This allow Convert to Curve in COOL
    
    Signed-off-by: Hubert Figuière <h...@collabora.com>
    Change-Id: Id1aa0bc68238ac29221edb1c1ec7dda6e16ce103
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168170
    Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com>
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 86f0efda8857..70634fefa269 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -3928,6 +3928,7 @@ static void doc_iniUnoCommands ()
         u".uno:CellProtection"_ustr,
         u".uno:MoveKeepInsertMode"_ustr,
         u".uno:ToggleSheetGrid"_ustr,
+        u".uno:ChangeBezier"_ustr,
     };
 
     util::URL aCommandURL;
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx
index d289cd2616a8..ac3a85cc336a 100644
--- a/sfx2/source/control/unoctitm.cxx
+++ b/sfx2/source/control/unoctitm.cxx
@@ -1117,7 +1117,8 @@ static void InterceptLOKStateChangeEvent(sal_uInt16 nSID, 
SfxViewFrame* pViewFra
              aEvent.FeatureURL.Path == "InsertDateContentControl" ||
              aEvent.FeatureURL.Path == "InsertDropdownContentControl" ||
              aEvent.FeatureURL.Path == "InsertPlainTextContentControl" ||
-             aEvent.FeatureURL.Path == "InsertPictureContentControl")
+             aEvent.FeatureURL.Path == "InsertPictureContentControl" ||
+             aEvent.FeatureURL.Path == "ChangeBezier")
     {
         aBuffer.append(aEvent.IsEnabled ? std::u16string_view(u"enabled") : 
std::u16string_view(u"disabled"));
     }

Reply via email to