summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/scdetect.cxx
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2020-04-10 11:47:16 +0200
committerMichael Weghorn <m.weghorn@posteo.de>2020-04-20 09:21:01 +0200
commit2c29c91af35379dd865f4b6b028367196b985979 (patch)
tree91ac7bae1e1d582772080887b47f0be533744fa3 /sc/source/ui/unoobj/scdetect.cxx
parente0f97f0267acfe4d7b2c8d780964f49ded910802 (diff)
Translate German variable names
Ende -> End Change-Id: I8150dbc897ab60d01f183d724d923d946615dcab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92027 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'sc/source/ui/unoobj/scdetect.cxx')
-rw-r--r--sc/source/ui/unoobj/scdetect.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sc/source/ui/unoobj/scdetect.cxx b/sc/source/ui/unoobj/scdetect.cxx
index b9ca1180c7df..efe6d3c8993b 100644
--- a/sc/source/ui/unoobj/scdetect.cxx
+++ b/sc/source/ui/unoobj/scdetect.cxx
@@ -45,32 +45,32 @@ namespace {
#define M_DC 0x0100
#define M_ALT(CNT) (0x0200+(CNT))
-#define M_ENDE 0x8000
+#define M_END 0x8000
const sal_uInt16 pLotus[] = // Lotus 1/1A/2
{ 0x0000, 0x0000, 0x0002, 0x0000,
M_ALT(2), 0x0004, 0x0006,
- 0x0004, M_ENDE };
+ 0x0004, M_END };
const sal_uInt16 pLotusNew[] = // Lotus >= 9.7
{ 0x0000, 0x0000, M_DC, 0x0000, // Rec# + Len (0x1a)
M_ALT(3), 0x0003, 0x0004, 0x0005, // File Revision Code 97->ME
0x0010, 0x0004, 0x0000, 0x0000,
- M_ENDE };
+ M_END };
const sal_uInt16 pLotus2[] = // Lotus >3
{ 0x0000, 0x0000, 0x001A, 0x0000, // Rec# + Len (26)
M_ALT(2), 0x0000, 0x0002, // File Revision Code
0x0010,
0x0004, 0x0000, // File Revision Subcode
- M_ENDE };
+ M_END };
const sal_uInt16 pQPro[] =
{ 0x0000, 0x0000, 0x0002, 0x0000,
M_ALT(4), 0x0001, 0x0002, // WB1, WB2
0x0006, 0x0007, // QPro 6/7 (?)
0x0010,
- M_ENDE };
+ M_END };
const sal_uInt16 pDIF1[] = // DIF with CR-LF
{
@@ -79,7 +79,7 @@ const sal_uInt16 pDIF1[] = // DIF with CR-LF
'0', ',', '1',
M_DC, M_DC,
'\"',
- M_ENDE };
+ M_END };
const sal_uInt16 pDIF2[] = // DIF with CR or LF
{
@@ -88,13 +88,13 @@ const sal_uInt16 pDIF2[] = // DIF with CR or LF
'0', ',', '1',
M_DC,
'\"',
- M_ENDE };
+ M_END };
const sal_uInt16 pSylk[] = // Sylk
{
'I', 'D', ';',
M_ALT(3), 'P', 'N', 'E', // 'P' plus undocumented Excel extensions 'N' and 'E'
- M_ENDE };
+ M_END };
bool detectThisFormat(SvStream& rStr, const sal_uInt16* pSearch)
{
@@ -126,7 +126,7 @@ bool detectThisFormat(SvStream& rStr, const sal_uInt16* pSearch)
nCntAlt--;
}
}
- else if( nMuster & M_ENDE )
+ else if( nMuster & M_END )
{ // Format detected
return true;
}