diff options
author | Hubert Figuière <hub@collabora.com> | 2024-05-28 17:08:07 -0400 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-05-30 10:10:06 +0200 |
commit | f67e7fc5c71308e1866c78a1c48c9a6c070886cc (patch) | |
tree | 485394af6c1c8f53bf6fa589d259e2240847ffe8 /sfx2/source | |
parent | cc94f402853bbdce40165a00fe317910d6270562 (diff) |
cool#9174 - Enable .uno:ChangeBezier
This allow Convert to Curve in COOL
Signed-off-by: Hubert Figuière <hub@collabora.com>
Change-Id: Id1aa0bc68238ac29221edb1c1ec7dda6e16ce103
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168170
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
(cherry picked from commit c5a7ff366fd9094c3ee1aba4c016b59c5635ea9b)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168194
Tested-by: Jenkins
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/control/unoctitm.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index b267c6157b57..6dd55fc06a2d 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")); } |