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>
This commit is contained in:
@@ -116,7 +116,7 @@ sw/source/core/inc/frmtool.hxx:260
|
|||||||
SwBorderAttrs m_bBorderDist
|
SwBorderAttrs m_bBorderDist
|
||||||
1
|
1
|
||||||
sw/source/core/inc/UndoSort.hxx:38
|
sw/source/core/inc/UndoSort.hxx:38
|
||||||
SwSortUndoElement::(anonymous union)::(anonymous) nKenn
|
SwSortUndoElement::(anonymous union)::(anonymous) nID
|
||||||
4294967295
|
4294967295
|
||||||
sw/source/filter/html/htmlcss1.cxx:77
|
sw/source/filter/html/htmlcss1.cxx:77
|
||||||
SwCSS1ItemIds nFormatBreak
|
SwCSS1ItemIds nFormatBreak
|
||||||
|
@@ -35,7 +35,7 @@ struct SwSortUndoElement
|
|||||||
{
|
{
|
||||||
union {
|
union {
|
||||||
struct {
|
struct {
|
||||||
sal_uLong nKenn;
|
sal_uLong nID;
|
||||||
sal_uLong nSource, nTarget;
|
sal_uLong nSource, nTarget;
|
||||||
} TXT;
|
} TXT;
|
||||||
struct {
|
struct {
|
||||||
@@ -52,7 +52,7 @@ struct SwSortUndoElement
|
|||||||
{
|
{
|
||||||
SORT_TXT_TBL.TXT.nSource = nS;
|
SORT_TXT_TBL.TXT.nSource = nS;
|
||||||
SORT_TXT_TBL.TXT.nTarget = nT;
|
SORT_TXT_TBL.TXT.nTarget = nT;
|
||||||
SORT_TXT_TBL.TXT.nKenn = 0xffffffff;
|
SORT_TXT_TBL.TXT.nID = 0xffffffff;
|
||||||
}
|
}
|
||||||
~SwSortUndoElement();
|
~SwSortUndoElement();
|
||||||
};
|
};
|
||||||
|
@@ -35,7 +35,7 @@
|
|||||||
SwSortUndoElement::~SwSortUndoElement()
|
SwSortUndoElement::~SwSortUndoElement()
|
||||||
{
|
{
|
||||||
// are there string pointers saved?
|
// 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.pSource;
|
||||||
delete SORT_TXT_TBL.TBL.pTarget;
|
delete SORT_TXT_TBL.TBL.pTarget;
|
||||||
|
Reference in New Issue
Block a user