Module: wine Branch: master Commit: 3c336ab0cf93de8238b3ff95cbab84ce69b93502 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=3c336ab0cf93de8238b3ff95...
Author: Francois Gouget fgouget@free.fr Date: Thu Sep 7 20:00:15 2006 +0200
shell32: Fix spelling of a local variable.
---
dlls/shell32/shlmenu.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/shell32/shlmenu.c b/dlls/shell32/shlmenu.c index 7a56222..42cec7a 100644 --- a/dlls/shell32/shlmenu.c +++ b/dlls/shell32/shlmenu.c @@ -485,7 +485,7 @@ HMENU WINAPI FileMenu_FindSubMenuByPidl( int WINAPI FileMenu_AppendFilesForPidl( HMENU hmenu, LPCITEMIDLIST pidl, - BOOL bAddSeperator) + BOOL bAddSeparator) { LPFMINFO menudata;
@@ -495,10 +495,10 @@ int WINAPI FileMenu_AppendFilesForPidl(
FM_InitMenuPopup(hmenu, pidl);
- if (bAddSeperator) + if (bAddSeparator) FileMenu_AppendItemW (hmenu, FM_SEPARATOR, 0, 0, 0, FM_DEFAULT_HEIGHT);
- TRACE("%p %p 0x%08x\n",hmenu, pidl,bAddSeperator); + TRACE("%p %p 0x%08x\n",hmenu, pidl,bAddSeparator);
return 0; }