diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-01-16 14:16:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-02-16 09:50:18 +0100 |
commit | 515870b31dfef95b6c48d368f075db985346bac3 (patch) | |
tree | eee2c79f2ffbe38d697e648ec0c74af5b3583f13 /toolkit | |
parent | 1087afd9135b54e83c0ec3fa9aae19ac6c2d9c77 (diff) |
Clang -Wconstant-conversion.
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/animatedimagespeer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/animatedimagespeer.cxx b/toolkit/source/awt/animatedimagespeer.cxx index ce9686b5da3b..f1f5541a96cb 100644 --- a/toolkit/source/awt/animatedimagespeer.cxx +++ b/toolkit/source/awt/animatedimagespeer.cxx @@ -219,7 +219,7 @@ namespace toolkit || ( !lcl_ensureImage_throw( xGraphicProvider, isHighContrast, rImageSet[0] ) ) ) { - aImageSizes[ nImageSet ] = Size( ::std::numeric_limits< long >::max(), ::std::numeric_limits< long >::max() ); + aImageSizes[ nImageSet ] = Size( SAL_MAX_INT32, SAL_MAX_INT32 ); } else { |