diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-08-12 10:17:26 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-08-13 10:10:46 +0200 |
commit | 28447075ea4b385ebf75f34d76226388c228b80e (patch) | |
tree | befe2af51c699dbd0440a030216580137a986491 /vcl/source | |
parent | 578d3fc5e640e0d61a2c89daaef7b0101a003052 (diff) |
warning C4245: 'return' : conversion from 'int' to 'sal_uInt16'...
...signed/unsigned mismatch
Change-Id: I24b853330321a6849dc662d1702efc26642dd0b2
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/window/status.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/status.cxx b/vcl/source/window/status.cxx index 0b8502e3af08..c19d9e471c19 100644 --- a/vcl/source/window/status.cxx +++ b/vcl/source/window/status.cxx @@ -321,7 +321,7 @@ sal_uInt16 StatusBar::ImplGetFirstVisiblePos() const } } - return ~0; + return SAL_MAX_UINT16; } void StatusBar::ImplDrawText( bool bOffScreen, long nOldTextWidth ) |