summaryrefslogtreecommitdiffstats
path: root/vcl
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-03-08 10:05:44 +0100
committerDavid Tardon <dtardon@redhat.com>2012-03-12 08:53:31 +0100
commit91b8bae79f3bec139fa51420727445c160116e65 (patch)
treef99754133f3ff801e0c9e7621ba57febffcf2ecd /vcl
parentWaE: declaration shadows a previous local (diff)
downloadcore-91b8bae79f3bec139fa51420727445c160116e65.tar.gz
core-91b8bae79f3bec139fa51420727445c160116e65.zip
WaE: comparison between signed and unsigned integer expressions
Diffstat (limited to 'vcl')
-rw-r--r--vcl/win/source/window/salframe.cxx2
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;