summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-11 22:31:50 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-12 15:50:23 +0200
commit9a80171db18d7c8988dfd7598e8af17c6b2e02de (patch)
treeb302223acab94bca7dbdacb57235e711e242dbf7 /include
parent3a09d852db28245633d06d0c79744a7780b19f1a (diff)
Avoid reserved identifiers
Change-Id: I6c8565653ece37251a98103f71408ace2a0946a8
Diffstat (limited to 'include')
-rw-r--r--include/filter/msfilter/escherex.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx
index 9648f66dd2a8..db70cc880749 100644
--- a/include/filter/msfilter/escherex.hxx
+++ b/include/filter/msfilter/escherex.hxx
@@ -655,8 +655,8 @@ public:
};
-#define _E_GRAPH_PROV_USE_INSTANCES 1
-#define _E_GRAPH_PROV_DO_NOT_ROTATE_METAFILES 2
+#define E_GRAPH_PROV_USE_INSTANCES 1
+#define E_GRAPH_PROV_DO_NOT_ROTATE_METAFILES 2
class MSFILTER_DLLPUBLIC EscherGraphicProvider
{
@@ -695,7 +695,7 @@ public:
void SetBaseURI( const OUString& rBaseURI ) { maBaseURI = rBaseURI; };
const OUString& GetBaseURI() { return maBaseURI; };
- EscherGraphicProvider( sal_uInt32 nFlags = _E_GRAPH_PROV_DO_NOT_ROTATE_METAFILES );
+ EscherGraphicProvider( sal_uInt32 nFlags = E_GRAPH_PROV_DO_NOT_ROTATE_METAFILES );
virtual ~EscherGraphicProvider();
};
@@ -1053,7 +1053,7 @@ public:
class MSFILTER_DLLPUBLIC EscherExGlobal : public EscherGraphicProvider
{
public:
- explicit EscherExGlobal( sal_uInt32 nGraphicProvFlags = _E_GRAPH_PROV_DO_NOT_ROTATE_METAFILES );
+ explicit EscherExGlobal( sal_uInt32 nGraphicProvFlags = E_GRAPH_PROV_DO_NOT_ROTATE_METAFILES );
virtual ~EscherExGlobal();
/** Returns a new drawing ID for a new drawing container (DGCONTAINER). */