mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[BROWSEUI]
* Fix a couple typoed function names. svn path=/branches/shell-experiments/; revision=63382
This commit is contained in:
parent
8c1bafc6f8
commit
e8463b3e2e
1 changed files with 5 additions and 5 deletions
|
@ -1385,7 +1385,7 @@ TaskSwitchWnd_EnumWindowsProc(IN HWND hWnd,
|
|||
}
|
||||
|
||||
static LRESULT CALLBACK
|
||||
TaskSwichWnd_ToolbarSubclassedProc(IN HWND hWnd,
|
||||
TaskSwitchWnd_ToolbarSubclassedProc(IN HWND hWnd,
|
||||
IN UINT msg,
|
||||
IN WPARAM wParam,
|
||||
IN LPARAM lParam,
|
||||
|
@ -1523,7 +1523,7 @@ TaskSwitchWnd_Create(IN OUT PTASK_SWITCH_WND This)
|
|||
/* Subclass the toolbar control because it doesn't provide a
|
||||
NM_NCHITTEST notification */
|
||||
This->IsToolbarSubclassed = SetWindowSubclass(This->hWndToolbar,
|
||||
TaskSwichWnd_ToolbarSubclassedProc,
|
||||
TaskSwitchWnd_ToolbarSubclassedProc,
|
||||
TSW_TOOLBAR_SUBCLASS_ID,
|
||||
(DWORD_PTR)This);
|
||||
}
|
||||
|
@ -1840,7 +1840,7 @@ TaskSwitchWnd_HandleButtonRightClick(IN OUT PTASK_SWITCH_WND This,
|
|||
|
||||
|
||||
static LRESULT
|
||||
TaskSwichWnd_HandleItemPaint(IN OUT PTASK_SWITCH_WND This,
|
||||
TaskSwitchWnd_HandleItemPaint(IN OUT PTASK_SWITCH_WND This,
|
||||
IN OUT NMTBCUSTOMDRAW *nmtbcd)
|
||||
{
|
||||
LRESULT Ret = CDRF_DODEFAULT;
|
||||
|
@ -1902,7 +1902,7 @@ TaskSwitchWnd_HandleToolbarNotification(IN OUT PTASK_SWITCH_WND This,
|
|||
{
|
||||
|
||||
case CDDS_ITEMPREPAINT:
|
||||
Ret = TaskSwichWnd_HandleItemPaint(This,
|
||||
Ret = TaskSwitchWnd_HandleItemPaint(This,
|
||||
nmtbcd);
|
||||
break;
|
||||
|
||||
|
@ -2109,7 +2109,7 @@ ForwardContextMenuMsg:
|
|||
if (This->IsToolbarSubclassed)
|
||||
{
|
||||
if (RemoveWindowSubclass(This->hWndToolbar,
|
||||
TaskSwichWnd_ToolbarSubclassedProc,
|
||||
TaskSwitchWnd_ToolbarSubclassedProc,
|
||||
TSW_TOOLBAR_SUBCLASS_ID))
|
||||
{
|
||||
This->IsToolbarSubclassed = FALSE;
|
||||
|
|
Loading…
Reference in a new issue