summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-15 16:59:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-18 15:30:09 +0200
commit3a72fb6155b31679c7813d3c778f7cd26d2142b1 (patch)
treef05ae3b2baacfe53dfd7d304c4c257bde838e7e0
parentb5758dfd0230a4c868c6fc689a350fe8ed6a70f6 (diff)
Avoid reserved identifier
Change-Id: I207203433b6300dda662c2c0b5c1d9e167c1c4c6
-rw-r--r--chart2/source/view/main/AbstractShapeFactory.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/view/main/AbstractShapeFactory.cxx b/chart2/source/view/main/AbstractShapeFactory.cxx
index 777bdd454c75..752ff10185dd 100644
--- a/chart2/source/view/main/AbstractShapeFactory.cxx
+++ b/chart2/source/view/main/AbstractShapeFactory.cxx
@@ -50,7 +50,7 @@ namespace chart {
namespace {
-typedef opengl::OpenglShapeFactory* (*__getOpenglShapeFactory)(void);
+typedef opengl::OpenglShapeFactory* (*getOpenglShapeFactory_)(void);
#ifndef DISABLE_DYNLOADING
@@ -96,7 +96,7 @@ AbstractShapeFactory* AbstractShapeFactory::getOrCreateShapeFactory(const uno::R
if(fn)
{
- pShapeFactory = reinterpret_cast<__getOpenglShapeFactory>(fn)();
+ pShapeFactory = reinterpret_cast<getOpenglShapeFactory_>(fn)();
pShapeFactory->setShapeFactory(xFactory);
}
}