summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-09-21 13:41:55 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-11-19 08:36:23 +0100
commitd5b887e2329c1d37c1bc368a4bc89d50e561e06a (patch)
tree42d57f08c3646c990246b42d47e700e5bc5be18c
parentf4dc137734a7e0aaefdc854acd124cc2dbba72ec (diff)
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@yahoo.fr>
-rw-r--r--sw/inc/strings.hrc2
-rw-r--r--sw/source/uibase/misc/redlndlg.cxx4
-rw-r--r--sw/source/uibase/shells/textfld.cxx2
3 files changed, 4 insertions, 4 deletions
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;