summaryrefslogtreecommitdiff
path: root/sc/source/ui/optdlg/calcoptionsdlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-05-20 17:27:49 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-05-21 18:19:58 +0200
commit9940f077fdfc0c271aa66ad64578ae2236a2ca81 (patch)
treea52b00f3ba98d78f88a0d2aa5a02605746f8e6c7 /sc/source/ui/optdlg/calcoptionsdlg.hxx
parentf19a599f6911f5ccd1049228454b6c6c8fd6d5cb (diff)
add Toggleable as a separate thing to a Button
and inherit ToggleButton from both it and Button Change-Id: If0e500aca8d0ffa087cb5e2bfc1786372fbff4eb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115921 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/source/ui/optdlg/calcoptionsdlg.hxx')
-rw-r--r--sc/source/ui/optdlg/calcoptionsdlg.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/optdlg/calcoptionsdlg.hxx b/sc/source/ui/optdlg/calcoptionsdlg.hxx
index 003f58ff11ac..97d7bb21c48e 100644
--- a/sc/source/ui/optdlg/calcoptionsdlg.hxx
+++ b/sc/source/ui/optdlg/calcoptionsdlg.hxx
@@ -18,10 +18,10 @@ public:
ScCalcOptionsDialog(weld::Window* pParent, const ScCalcConfig& rConfig, bool bWriteConfig);
virtual ~ScCalcOptionsDialog() override;
- DECL_LINK(AsZeroModifiedHdl, weld::ToggleButton&, void);
+ DECL_LINK(AsZeroModifiedHdl, weld::Toggleable&, void);
DECL_LINK(ConversionModifiedHdl, weld::ComboBox&, void);
DECL_LINK(SyntaxModifiedHdl, weld::ComboBox&, void);
- DECL_LINK(CurrentDocOnlyHdl, weld::ToggleButton&, void);
+ DECL_LINK(CurrentDocOnlyHdl, weld::Toggleable&, void);
const ScCalcConfig& GetConfig() const { return maConfig; }
bool GetWriteCalcConfig() const { return mbWriteConfig; }