From efc2193fda59dd8ed7d3cb2a7f5006a544153b93 Mon Sep 17 00:00:00 2001 From: "saari%netscape.com" Date: Sat, 3 Jul 1999 00:31:23 +0000 Subject: [PATCH] fix build breakage git-svn-id: svn://10.0.0.236/trunk@38203 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpfe/appshell/src/nsWebShellWindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/xpfe/appshell/src/nsWebShellWindow.cpp b/mozilla/xpfe/appshell/src/nsWebShellWindow.cpp index 5685ff757cd..e3733e319e5 100644 --- a/mozilla/xpfe/appshell/src/nsWebShellWindow.cpp +++ b/mozilla/xpfe/appshell/src/nsWebShellWindow.cpp @@ -680,13 +680,13 @@ NS_IMETHODIMP nsWebShellWindow::LoadMenuItem( pnsMenuItem->SetShortcutChar(keyChar); if(shiftValue == "true") - modifiers |= kMenuShiftModifier; + modifiers |= knsMenuItemShiftModifier; if(altValue == "true") - modifiers |= kMenuOptionModifier; + modifiers |= knsMenuItemAltModifier; if(commandValue == "false") - modifiers |= kMenuNoCommandModifier; + modifiers |= knsMenuItemCommandModifier; pnsMenuItem->SetModifiers(modifiers); }