diff options
Diffstat (limited to 'svx')
-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 ); } }; } |