Author: dquintana
Date: Tue May 20 10:00:39 2014
New Revision: 63382
URL:
http://svn.reactos.org/svn/reactos?rev=63382&view=rev
Log:
[BROWSEUI]
* Fix a couple typoed function names.
Modified:
branches/shell-experiments/base/shell/explorer-new/taskswnd.c
Modified: branches/shell-experiments/base/shell/explorer-new/taskswnd.c
URL:
http://svn.reactos.org/svn/reactos/branches/shell-experiments/base/shell/ex…
==============================================================================
--- branches/shell-experiments/base/shell/explorer-new/taskswnd.c [iso-8859-1] (original)
+++ branches/shell-experiments/base/shell/explorer-new/taskswnd.c [iso-8859-1] Tue May 20
10:00:39 2014
@@ -1385,7 +1385,7 @@
}
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 @@
/* 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 @@
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 @@
{
case CDDS_ITEMPREPAINT:
- Ret = TaskSwichWnd_HandleItemPaint(This,
+ Ret = TaskSwitchWnd_HandleItemPaint(This,
nmtbcd);
break;
@@ -2109,7 +2109,7 @@
if (This->IsToolbarSubclassed)
{
if (RemoveWindowSubclass(This->hWndToolbar,
- TaskSwichWnd_ToolbarSubclassedProc,
+ TaskSwitchWnd_ToolbarSubclassedProc,
TSW_TOOLBAR_SUBCLASS_ID))
{
This->IsToolbarSubclassed = FALSE;