summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-12 19:59:09 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-12 20:03:48 +0200
commit20ff812d1c9ceae66a48d21190cc6c4cfe9abcbe (patch)
tree971c4e71d2530fef47546efd141754f8362c4f62
parent556d9a6b3c73b775d2cf9bb885164d37bbbaa724 (diff)
Avoid reserved identifier
Change-Id: Id2c34c5515ca72bba98ff618171b94a6d2da3620
-rw-r--r--include/xmloff/xmlnmspe.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/xmloff/xmlnmspe.hxx b/include/xmloff/xmlnmspe.hxx
index 890141d83828..ae588d28eeac 100644
--- a/include/xmloff/xmlnmspe.hxx
+++ b/include/xmloff/xmlnmspe.hxx
@@ -28,11 +28,11 @@ const sal_uInt16 XML_NAMESPACE_##prefix##_IDX = key;
#define XML_OLD_NAMESPACE( prefix, index ) \
const sal_uInt16 XML_OLD_NAMESPACE_##prefix##_IDX = \
- (_XML_OLD_NAMESPACE_BASE+index);
+ (XML_OLD_NAMESPACE_BASE+index);
// current namespaces
// These namespaces have the same index in the namespace table as prefix used.
-// If a namespace is added, _XML_OLD_NAMESPACE_BASE has to be adjusted!
+// If a namespace is added, XML_OLD_NAMESPACE_BASE has to be adjusted!
XML_NAMESPACE( OFFICE, 0U )
XML_NAMESPACE( STYLE, 1U )
XML_NAMESPACE( TEXT , 2U )
@@ -84,7 +84,7 @@ XML_NAMESPACE_EXT( DRAW, 40U )
XML_NAMESPACE_EXT( CALC, 41U )
XML_NAMESPACE_EXT( LO, 42U )
-#define _XML_OLD_NAMESPACE_BASE 43U
+#define XML_OLD_NAMESPACE_BASE 43U
// namespaces used in the technical preview (SO 5.2)
XML_OLD_NAMESPACE( FO, 0U )