diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-08 10:05:44 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-12 08:53:31 +0100 |
commit | 91b8bae79f3bec139fa51420727445c160116e65 (patch) | |
tree | f99754133f3ff801e0c9e7621ba57febffcf2ecd /vcl | |
parent | 47cad9e8e82bd28748c93ad716f294274188cb49 (diff) |
WaE: comparison between signed and unsigned integer expressions
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/win/source/window/salframe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/source/window/salframe.cxx b/vcl/win/source/window/salframe.cxx index 5e9030622779..985b3d484a9b 100644 --- a/vcl/win/source/window/salframe.cxx +++ b/vcl/win/source/window/salframe.cxx @@ -2445,7 +2445,7 @@ static void ImplGetKeyNameText( LONG lParam, sal_Unicode* pBuf, rtl::OUString WinSalFrame::GetKeyName( sal_uInt16 nKeyCode ) { - static const int nMaxKeyLen = 350; + static const UINT nMaxKeyLen = 350; sal_Unicode aKeyBuf[ nMaxKeyLen ]; UINT nKeyBufLen = 0; UINT nSysCode = 0; |