From b04d9ea99e4c57ae7ce6611171d92a4d783e1213 Mon Sep 17 00:00:00 2001 From: "gavin%gavinsharp.com" Date: Fri, 9 May 2008 01:56:36 +0000 Subject: [PATCH] Fix nit from previous checkin for bug 432389 git-svn-id: svn://10.0.0.236/trunk@251441 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/widget/src/cocoa/nsChildView.mm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/widget/src/cocoa/nsChildView.mm b/mozilla/widget/src/cocoa/nsChildView.mm index 4a5730ef5ed..0946d32b856 100644 --- a/mozilla/widget/src/cocoa/nsChildView.mm +++ b/mozilla/widget/src/cocoa/nsChildView.mm @@ -4248,19 +4248,19 @@ GetUSLayoutCharFromKeyTranslate(UInt32 aKeyCode, UInt32 aModifiers) // normal chars PRUint32 unshiftedChar = GetUniCharFromKeyTranslate(kt, key, lockState); - PRUint32 shiftLockMod = shiftKey | lockState; + Uint32 shiftLockMod = shiftKey | lockState; PRUint32 shiftedChar = GetUniCharFromKeyTranslate(kt, key, shiftLockMod); // characters generated with Cmd key // XXX we should remove CapsLock state, which changes characters from // Latin to Cyrillic with Russian layout on 10.4 only when Cmd key // is pressed. - PRUint32 numState = (lockState & ~alphaLock); // only num lock state + UInt32 numState = (lockState & ~alphaLock); // only num lock state PRUint32 uncmdedChar = GetUniCharFromKeyTranslate(kt, key, numState); PRUint32 uncmdedUSChar = GetUSLayoutCharFromKeyTranslate(key, numState); - PRUint32 cmdNumMod = cmdKey | numState; + UInt32 cmdNumMod = cmdKey | numState; PRUint32 cmdedChar = GetUniCharFromKeyTranslate(kt, key, cmdNumMod); - PRUint32 cmdShiftNumMod = shiftKey | cmdNumMod; + UInt32 cmdShiftNumMod = shiftKey | cmdNumMod; PRUint32 cmdedShiftChar = GetUniCharFromKeyTranslate(kt, key, cmdShiftNumMod);