shell32: Fix spelling of a local variable.

This commit is contained in:
Francois Gouget 2006-09-07 20:00:15 +02:00 committed by Alexandre Julliard
parent 3eda8da2bd
commit 3c336ab0cf
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}