diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-15 15:28:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-18 15:30:08 +0200 |
commit | 234bb569e8eb3569b22b36043a1454e7fa170aab (patch) | |
tree | c39746cc6b69065b7ad5992ad4c5445cdbefa1d2 /svx/source/unodraw/shapepropertynotifier.cxx | |
parent | 277193b12217e6ec1b49719d15a7e11d177f1a5c (diff) |
Avoid reserved identifier
Change-Id: I527143a87c3793dc899ff25a73209e2997116b73
Diffstat (limited to 'svx/source/unodraw/shapepropertynotifier.cxx')
-rw-r--r-- | svx/source/unodraw/shapepropertynotifier.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/unodraw/shapepropertynotifier.cxx b/svx/source/unodraw/shapepropertynotifier.cxx index ff8bcff7e268..3e36e7080ac9 100644 --- a/svx/source/unodraw/shapepropertynotifier.cxx +++ b/svx/source/unodraw/shapepropertynotifier.cxx @@ -33,9 +33,9 @@ namespace struct ShapePropertyHash { - size_t operator()( svx::ShapeProperty __x ) const + size_t operator()( svx::ShapeProperty x ) const { - return size_t( __x ); + return size_t( x ); } }; } |