include/sfx2/strings.hrc | 2 +- sfx2/source/doc/templatedlg.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit 25598c819b9a591f2fad1ec6ea2c8729027c9e3f Author: Andrea Gelmini <[email protected]> AuthorDate: Mon Jul 5 19:47:27 2021 +0200 Commit: Andrea Gelmini <[email protected]> CommitDate: Tue Jul 6 09:00:22 2021 +0200 Fix typo in code Change-Id: Iabd6c07614df7b0335c1609b62116f26a1db2d06 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118451 Tested-by: Jenkins Reviewed-by: Andrea Gelmini <[email protected]> diff --git a/include/sfx2/strings.hrc b/include/sfx2/strings.hrc index 676ff541059b..d8af44e6a2e9 100644 --- a/include/sfx2/strings.hrc +++ b/include/sfx2/strings.hrc @@ -353,7 +353,7 @@ #define STR_RECENT NC_("STR_RECENT", "Recently used") #define STR_NORECENT NC_("STR_NORECENT", "No recent characters") -#define STR_ACTION_RESET_ALL_DEAULT_TEMPLATES NC_("STR_ACTION_RESET_ALL_DEAULT_TEMPLATES","Reset All De~fault Templates") +#define STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES NC_("STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES","Reset All De~fault Templates") #define STR_ACTION_RESET_WRITER_TEMPLATE NC_("STR_ACTION_RESET_WRITER_TEMPLATE","Reset De~fault Text Document") #define STR_ACTION_RESET_CALC_TEMPLATE NC_("STR_ACTION_RESET_CALC_TEMPLATE","Reset De~fault Spreadsheet") #define STR_ACTION_RESET_IMPRESS_TEMPLATE NC_("STR_ACTION_RESET_IMPRESS_TEMPLATE","Reset De~fault Presentation") diff --git a/sfx2/source/doc/templatedlg.cxx b/sfx2/source/doc/templatedlg.cxx index 34011c454f3a..b7390e2dd359 100644 --- a/sfx2/source/doc/templatedlg.cxx +++ b/sfx2/source/doc/templatedlg.cxx @@ -180,7 +180,7 @@ SfxTemplateManagerDlg::SfxTemplateManagerDlg(weld::Window *pParent) mxActionBar->append_item(MNI_ACTION_DELETE_FOLDER, SfxResId(STR_CATEGORY_DELETE), BMP_ACTION_DELETE_CATEGORY); mxActionBar->append_separator("separator"); mxActionBar->append_item(MNI_ACTION_REFRESH, SfxResId(STR_ACTION_REFRESH), BMP_ACTION_REFRESH); - mxActionBar->append_item(MNI_ACTION_DEFAULT, SfxResId(STR_ACTION_RESET_ALL_DEAULT_TEMPLATES)); + mxActionBar->append_item(MNI_ACTION_DEFAULT, SfxResId(STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES)); mxActionBar->append_item(MNI_ACTION_DEFAULT_WRITER, SfxResId(STR_ACTION_RESET_WRITER_TEMPLATE), BMP_ACTION_DEFAULT_WRITER); mxActionBar->append_item(MNI_ACTION_DEFAULT_CALC, SfxResId(STR_ACTION_RESET_CALC_TEMPLATE), BMP_ACTION_DEFAULT_CALC); mxActionBar->append_item(MNI_ACTION_DEFAULT_IMPRESS, SfxResId(STR_ACTION_RESET_IMPRESS_TEMPLATE), BMP_ACTION_DEFAULT_IMPRESS); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
