diff options
author | Eike Rathke <erack@redhat.com> | 2022-10-05 19:21:36 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2022-10-05 20:07:36 +0200 |
commit | 1ea19958d6fed38513b1983599c2c43ad76aae61 (patch) | |
tree | 48e76f621d09bb38c76124e389871da208aa547b /include/svx/langbox.hxx | |
parent | 667d61f98765dd9c5d1d8b5603c75a62dba3f795 (diff) |
Add on-the-fly language tag to proper language list Western/Asian/Complex
In which combobox wherever it was added, the correct SfxItem will
be updated and at least when switching to another dialog tab and
back it will appear in the correct list.
(shouldn't tabbing out of the combobox already trigger that?)
Change-Id: I5aa78797dc24527c753c97d0357c3058271fa4d8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140991
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
Diffstat (limited to 'include/svx/langbox.hxx')
-rw-r--r-- | include/svx/langbox.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/langbox.hxx b/include/svx/langbox.hxx index a3d74adba703..7a03c522d98b 100644 --- a/include/svx/langbox.hxx +++ b/include/svx/langbox.hxx @@ -84,7 +84,7 @@ public: void InsertLanguage(const LanguageType nLangType); EditedAndValid GetEditedAndValid() const { return m_eEditedAndValid;} - sal_Int32 SaveEditedAsEntry(); + SvxLanguageBox* SaveEditedAsEntry( SvxLanguageBox* ppBoxes[3] /* convention: Western, Asian, Complex */ ); void connect_changed(const Link<weld::ComboBox&, void>& rLink) { m_aChangeHdl = rLink; } void connect_focus_in(const Link<weld::Widget&, void>& rLink) { m_xControl->connect_focus_in(rLink); } |