[Libreoffice-commits] core.git: sw/inc sw/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Mon Nov 19 07:36:45 UTC 2018
sw/inc/strings.hrc | 2 +-
sw/source/uibase/misc/redlndlg.cxx | 4 ++--
sw/source/uibase/shells/textfld.cxx | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
New commits:
commit d5b887e2329c1d37c1bc368a4bc89d50e561e06a
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Sep 21 13:41:55 2018 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Nov 19 08:36:23 2018 +0100
Fix STR_REDLINE_FORMATED -> STR_REDLINE_FORMATTED
It passed "make check" on Linux.
Change-Id: If89dc17d0a907680f64d0d35dd147e00be694c0e
Reviewed-on: https://gerrit.libreoffice.org/60869
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc
index f0a07cd6e1b0..ac8ad3c44826 100644
--- a/sw/inc/strings.hrc
+++ b/sw/inc/strings.hrc
@@ -1215,7 +1215,7 @@
#define STR_REDLINE_INSERTED NC_("STR_REDLINE_INSERTED", "Insertion")
#define STR_REDLINE_DELETED NC_("STR_REDLINE_DELETED", "Deletion")
#define STR_REDLINE_AUTOFMT NC_("STR_REDLINE_AUTOFMT", "AutoCorrect")
-#define STR_REDLINE_FORMATED NC_("STR_REDLINE_FORMATED", "Formats")
+#define STR_REDLINE_FORMATTED NC_("STR_REDLINE_FORMATTED", "Formats")
#define STR_REDLINE_TABLECHG NC_("STR_REDLINE_TABLECHG", "Table Changes")
#define STR_REDLINE_FMTCOLLSET NC_("STR_REDLINE_FMTCOLLSET", "Applied Paragraph Styles")
#define STR_PAGE NC_("STR_PAGE", "Page ")
diff --git a/sw/source/uibase/misc/redlndlg.cxx b/sw/source/uibase/misc/redlndlg.cxx
index 8b2001b3f065..169be0e7297c 100644
--- a/sw/source/uibase/misc/redlndlg.cxx
+++ b/sw/source/uibase/misc/redlndlg.cxx
@@ -153,7 +153,7 @@ SwRedlineAcceptDlg::SwRedlineAcceptDlg(vcl::Window *pParent, VclBuilderContainer
, m_xPopup(pBuilder->get_menu("writermenu"))
, m_sInserted(SwResId(STR_REDLINE_INSERTED))
, m_sDeleted(SwResId(STR_REDLINE_DELETED))
- , m_sFormated(SwResId(STR_REDLINE_FORMATED))
+ , m_sFormated(SwResId(STR_REDLINE_FORMATTED))
, m_sTableChgd(SwResId(STR_REDLINE_TABLECHG))
, m_sFormatCollSet(SwResId(STR_REDLINE_FMTCOLLSET))
, m_sAutoFormat(SwResId(STR_REDLINE_AUTOFMT))
@@ -1091,7 +1091,7 @@ IMPL_LINK_NOARG(SwRedlineAcceptDlg, CommandHdl, SvSimpleTable*, void)
break;
case nsRedlineType_t::REDLINE_FORMAT:
case nsRedlineType_t::REDLINE_PARAGRAPH_FORMAT:
- pResId = STR_REDLINE_FORMATED;
+ pResId = STR_REDLINE_FORMATTED;
break;
case nsRedlineType_t::REDLINE_TABLE:
pResId = STR_REDLINE_TABLECHG;
diff --git a/sw/source/uibase/shells/textfld.cxx b/sw/source/uibase/shells/textfld.cxx
index d0861d7ab6ae..6d97556e3f48 100644
--- a/sw/source/uibase/shells/textfld.cxx
+++ b/sw/source/uibase/shells/textfld.cxx
@@ -89,7 +89,7 @@ static OUString lcl_BuildTitleWithRedline( const SwRangeRedline *pRedline )
break;
case nsRedlineType_t::REDLINE_FORMAT:
case nsRedlineType_t::REDLINE_PARAGRAPH_FORMAT:
- pResId = STR_REDLINE_FORMATED;
+ pResId = STR_REDLINE_FORMATTED;
break;
case nsRedlineType_t::REDLINE_TABLE:
pResId = STR_REDLINE_TABLECHG;
More information about the Libreoffice-commits
mailing list