summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-04-11 12:47:11 +0200
committerAndras Timar <andras.timar@collabora.com>2019-05-13 16:37:31 +0200
commit2995cb53b5a2797787872fc94fbf8ecf8bf960b5 (patch)
tree9453f2c7c925599f388e8ad189c01ed6046d12d7 /sw
parentb4acba6a16397e63f4fe2091426e7770121fcac2 (diff)
Fix typo in code
Change-Id: Iae494674972ced3d4808f57440757ae4ae6988f1 Reviewed-on: https://gerrit.libreoffice.org/70632 Tested-by: Jenkins Reviewed-by: himajin100000 <himajin100000@gmail.com> Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/strings.hrc2
-rw-r--r--sw/source/core/undo/undobj.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc
index 621e139b8262..88171b13d638 100644
--- a/sw/inc/strings.hrc
+++ b/sw/inc/strings.hrc
@@ -541,7 +541,7 @@
#define STR_PARAGRAPH_UNDO NC_("STR_PARAGRAPH_UNDO", "paragraph")
#define STR_PARAGRAPH_SIGN_UNDO NC_("STR_PARAGRAPH_SIGN_UNDO", "Paragraph sign")
#define STR_UNDO_FLYFRMFMT_TITLE NC_("STR_UNDO_FLYFRMFMT_TITLE", "Change object title of $1")
-#define STR_UNDO_FLYFRMFMT_DESCRITPTION NC_("STR_UNDO_FLYFRMFMT_DESCRITPTION", "Change object description of $1")
+#define STR_UNDO_FLYFRMFMT_DESCRIPTION NC_("STR_UNDO_FLYFRMFMT_DESCRIPTION", "Change object description of $1")
#define STR_UNDO_TBLSTYLE_CREATE NC_("STR_UNDO_TBLSTYLE_CREATE", "Create table style: $1")
#define STR_UNDO_TBLSTYLE_DELETE NC_("STR_UNDO_TBLSTYLE_DELETE", "Delete table style: $1")
#define STR_UNDO_TBLSTYLE_UPDATE NC_("STR_UNDO_TBLSTYLE_UPDATE", "Update table style: $1")
diff --git a/sw/source/core/undo/undobj.cxx b/sw/source/core/undo/undobj.cxx
index a294c7e7e1c5..7e9c54ae2bc5 100644
--- a/sw/source/core/undo/undobj.cxx
+++ b/sw/source/core/undo/undobj.cxx
@@ -580,7 +580,7 @@ OUString GetUndoComment(SwUndoId eId)
pId = STR_UNDO_FLYFRMFMT_TITLE;
break;
case SwUndoId::FLYFRMFMT_DESCRIPTION:
- pId = STR_UNDO_FLYFRMFMT_DESCRITPTION;
+ pId = STR_UNDO_FLYFRMFMT_DESCRIPTION;
break;
case SwUndoId::TBLSTYLE_CREATE:
pId = STR_UNDO_TBLSTYLE_CREATE;