summaryrefslogtreecommitdiff
path: root/sw/source/ui/fmtui/tmpdlg.cxx
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 /sw/source/ui/fmtui/tmpdlg.cxx
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 'sw/source/ui/fmtui/tmpdlg.cxx')
-rw-r--r--sw/source/ui/fmtui/tmpdlg.cxx13
1 files changed, 11 insertions, 2 deletions
diff --git a/sw/source/ui/fmtui/tmpdlg.cxx b/sw/source/ui/fmtui/tmpdlg.cxx
index ae69c35093d3..cfab577c82dd 100644
--- a/sw/source/ui/fmtui/tmpdlg.cxx
+++ b/sw/source/ui/fmtui/tmpdlg.cxx
@@ -77,8 +77,17 @@ SwTemplateDlgController::SwTemplateDlgController(weld::Window* pParent,
nHtmlMode = ::GetHtmlMode(pWrtShell->GetView().GetDocShell());
SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create();
- weld::Button& pStandardButton(GetStandardButton());
- pStandardButton.set_label(SwResId(STR_STANDARD_ACTION));
+ GetStandardButton()->set_label(SwResId(STR_STANDARD_LABEL));
+ GetStandardButton()->set_tooltip_text(SwResId(STR_STANDARD_TOOLTIP));
+ GetStandardButton()->set_accessible_description(SwResId(STR_STANDARD_EXTENDEDTIP));
+
+ GetApplyButton()->set_label(SwResId(STR_APPLY_LABEL));
+ GetApplyButton()->set_tooltip_text(SwResId(STR_APPLY_TOOLTIP));
+ GetApplyButton()->set_accessible_description(SwResId(STR_APPLY_EXTENDEDTIP));
+
+ GeResetButton()->set_label(SwResId(STR_RESET_LABEL));
+ GeResetButton()->set_tooltip_text(SwResId(STR_RESET_TOOLTIP));
+ GeResetButton()->set_accessible_description(SwResId(STR_RESET_EXTENDEDTIP));
// stitch TabPages together
switch( nRegion )