summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2018-08-18 11:44:18 +0200
committerMichael Stahl <Michael.Stahl@cib.de>2018-08-19 18:30:44 +0200
commitb2f52f4372e65b9af0e6fda588ca8b49e370ec0c (patch)
tree61da516df7941a026ddf86ab40ee72562668d62f /sw
parente020cc88161ca5f3b35b629da627a530cb618532 (diff)
Translate German variable names
Change-Id: I6b5fb91cbf32ce082fb77989e1b9ac5e8ecfe438 Reviewed-on: https://gerrit.libreoffice.org/59283 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/inc/UndoSort.hxx4
-rw-r--r--sw/source/core/undo/unsort.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/inc/UndoSort.hxx b/sw/source/core/inc/UndoSort.hxx
index 293d6a7ae0ae..167aaa4ef625 100644
--- a/sw/source/core/inc/UndoSort.hxx
+++ b/sw/source/core/inc/UndoSort.hxx
@@ -35,7 +35,7 @@ struct SwSortUndoElement
{
union {
struct {
- sal_uLong nKenn;
+ sal_uLong nID;
sal_uLong nSource, nTarget;
} TXT;
struct {
@@ -52,7 +52,7 @@ struct SwSortUndoElement
{
SORT_TXT_TBL.TXT.nSource = nS;
SORT_TXT_TBL.TXT.nTarget = nT;
- SORT_TXT_TBL.TXT.nKenn = 0xffffffff;
+ SORT_TXT_TBL.TXT.nID = 0xffffffff;
}
~SwSortUndoElement();
};
diff --git a/sw/source/core/undo/unsort.cxx b/sw/source/core/undo/unsort.cxx
index e70ad166311f..2b2bc5b407f8 100644
--- a/sw/source/core/undo/unsort.cxx
+++ b/sw/source/core/undo/unsort.cxx
@@ -35,7 +35,7 @@
SwSortUndoElement::~SwSortUndoElement()
{
// are there string pointers saved?
- if( 0xffffffff != SORT_TXT_TBL.TXT.nKenn ) // Kenn(ung) = identifier
+ if( 0xffffffff != SORT_TXT_TBL.TXT.nID )
{
delete SORT_TXT_TBL.TBL.pSource;
delete SORT_TXT_TBL.TBL.pTarget;