[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - sfx2/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Fri Dec 18 15:49:20 UTC 2020
sfx2/source/doc/templatedlg.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit cba301460f1aaa1834e72796935cc1e88d74c19b
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Dec 18 13:16:18 2020 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Fri Dec 18 16:48:46 2020 +0100
Delete Category dialog includes '~' text in the titlebar
Change-Id: I8581e5219ffc690e686a0d563463c19b682ea04b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107910
Tested-by: Caolán McNamara <caolanm at redhat.com>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sfx2/source/doc/templatedlg.cxx b/sfx2/source/doc/templatedlg.cxx
index 313bf591862a..26787f0d2ac9 100644
--- a/sfx2/source/doc/templatedlg.cxx
+++ b/sfx2/source/doc/templatedlg.cxx
@@ -36,6 +36,7 @@
#include <unotools/pathoptions.hxx>
#include <unotools/viewoptions.hxx>
#include <vcl/event.hxx>
+#include <vcl/mnemonic.hxx>
#include <vcl/svapp.hxx>
#include <vcl/weld.hxx>
@@ -1110,7 +1111,7 @@ void SfxTemplateManagerDlg::OnCategoryDelete()
SfxTemplateCategoryDialog aDlg(m_xDialog.get());
aDlg.SetCategoryLBEntries(mxLocalView->getFolderNames());
aDlg.HideNewCategoryOption();
- aDlg.set_title(SfxResId(STR_CATEGORY_DELETE));
+ aDlg.set_title(MnemonicGenerator::EraseAllMnemonicChars(SfxResId(STR_CATEGORY_DELETE)));
aDlg.SetSelectLabelText(SfxResId(STR_CATEGORY_SELECT));
if (aDlg.run() == RET_OK)
More information about the Libreoffice-commits
mailing list