summaryrefslogtreecommitdiff
path: root/include/sfx2
diff options
context:
space:
mode:
authorHeiko Tietze <tietze.heiko@gmail.com>2021-03-05 09:14:44 +0100
committerHeiko Tietze <heiko.tietze@documentfoundation.org>2021-03-06 09:54:55 +0100
commit4902e3231f4f5f4df32d46a901801b18c297ef15 (patch)
tree9df6b9b79009598d560317c784b62475f34f050a /include/sfx2
parentadcddde9a99e77f9209cc5e2186cb9268990e34a (diff)
Related tdf#128469 - Customization of tab dialog buttons
Change-Id: Ib7d4bbc6d78ac93510835e061640bfcd99248195 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111987 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'include/sfx2')
-rw-r--r--include/sfx2/tabdlg.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx
index 9afebad1ba58..6397868a21d0 100644
--- a/include/sfx2/tabdlg.hxx
+++ b/include/sfx2/tabdlg.hxx
@@ -138,8 +138,10 @@ public:
virtual weld::Button& GetOKButton() const override { return *m_xOKBtn; }
weld::Button& GetCancelButton() const { return *m_xCancelBtn; }
- weld::Button& GetStandardButton() const { return *m_xBaseFmtBtn; }
weld::Button* GetUserButton() const { return m_xUserBtn.get(); }
+ weld::Button* GetStandardButton() const { return m_xBaseFmtBtn.get(); }
+ weld::Button* GetApplyButton() const { return m_xApplyBtn.get(); }
+ weld::Button* GeResetButton() const { return m_xResetBtn.get(); }
void RemoveResetButton();
void RemoveStandardButton();