diff options
Diffstat (limited to 'include/basegfx/utils')
-rw-r--r-- | include/basegfx/utils/rectcliptools.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/basegfx/utils/rectcliptools.hxx b/include/basegfx/utils/rectcliptools.hxx index 5ad90cb6ed81..9df75ef91bca 100644 --- a/include/basegfx/utils/rectcliptools.hxx +++ b/include/basegfx/utils/rectcliptools.hxx @@ -30,10 +30,10 @@ namespace basegfx { namespace RectClipFlags { - static const sal_uInt32 LEFT = (sal_Int32)0x01; - static const sal_uInt32 RIGHT = (sal_Int32)0x02; - static const sal_uInt32 TOP = (sal_Int32)0x04; - static const sal_uInt32 BOTTOM = (sal_Int32)0x08; + static const sal_uInt32 LEFT = sal_Int32(0x01); + static const sal_uInt32 RIGHT = sal_Int32(0x02); + static const sal_uInt32 TOP = sal_Int32(0x04); + static const sal_uInt32 BOTTOM = sal_Int32(0x08); } /** Calc clip mask for Cohen-Sutherland rectangle clip |