summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-02-27 20:01:42 +0000
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2020-02-28 12:02:45 +0100
commita9df22cb603b85f469f1f6dfc492362a08505beb (patch)
tree9b023f44c2660b13ddb3c5ad3946856b99918dc5
parent8fad60e54069b021206c20bd38718104ef2b8958 (diff)
tdf#130989 we want to fill the menu when the menubutton is toggled on
Change-Id: I85615277d3367ac679315745b47c1a7327c61903 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89668 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
-rw-r--r--sw/source/ui/misc/outline.cxx7
-rw-r--r--sw/source/uibase/inc/outline.hxx2
2 files changed, 6 insertions, 3 deletions
diff --git a/sw/source/ui/misc/outline.cxx b/sw/source/ui/misc/outline.cxx
index 47af1e385015..b4a0f584d36a 100644
--- a/sw/source/ui/misc/outline.cxx
+++ b/sw/source/ui/misc/outline.cxx
@@ -149,7 +149,7 @@ SwOutlineTabDialog::SwOutlineTabDialog(weld::Window* pParent, const SfxItemSet*
, bModified(rWrtSh.IsModified())
, m_xMenuButton(m_xBuilder->weld_menu_button("format"))
{
- m_xMenuButton->connect_clicked(LINK(this, SwOutlineTabDialog, FormHdl));
+ m_xMenuButton->connect_toggled(LINK(this, SwOutlineTabDialog, FormHdl));
m_xMenuButton->connect_selected(LINK(this, SwOutlineTabDialog, MenuSelectHdl));
xNumRule.reset(new SwNumRule(*rSh.GetOutlineNumRule()));
@@ -210,8 +210,11 @@ IMPL_LINK_NOARG(SwOutlineTabDialog, CancelHdl, weld::Button&, void)
m_xDialog->response(RET_CANCEL);
}
-IMPL_LINK_NOARG(SwOutlineTabDialog, FormHdl, weld::Button&, void)
+IMPL_LINK_NOARG(SwOutlineTabDialog, FormHdl, weld::ToggleButton&, void)
{
+ if (!m_xMenuButton->get_active())
+ return;
+
// fill PopupMenu
for(sal_uInt16 i = 0; i < SwChapterNumRules::nMaxRules; ++i)
{
diff --git a/sw/source/uibase/inc/outline.hxx b/sw/source/uibase/inc/outline.hxx
index 58f2383936fe..cf0f1818d86d 100644
--- a/sw/source/uibase/inc/outline.hxx
+++ b/sw/source/uibase/inc/outline.hxx
@@ -45,7 +45,7 @@ class SwOutlineTabDialog final : public SfxTabDialogController
std::unique_ptr<weld::MenuButton> m_xMenuButton;
DECL_LINK(CancelHdl, weld::Button&, void);
- DECL_LINK(FormHdl, weld::Button&, void);
+ DECL_LINK(FormHdl, weld::ToggleButton&, void);
DECL_LINK(MenuSelectHdl, const OString&, void);
virtual void PageCreated(const OString& rPageId, SfxTabPage& rPage) override;