Commit e0e119e4 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

comctl32: Typo and spelling fixes in comments.

parent 3ca3a06c
...@@ -671,7 +671,7 @@ CreateUpDownControl (DWORD style, INT x, INT y, INT cx, INT cy, ...@@ -671,7 +671,7 @@ CreateUpDownControl (DWORD style, INT x, INT y, INT cx, INT cy,
* *
* NOTES * NOTES
* This function is just a dummy - all the controls are registered at * This function is just a dummy - all the controls are registered at
* the DLL initialization time. See InitCommonContolsEx for details. * the DLL initialization time. See InitCommonControlsEx for details.
*/ */
VOID WINAPI VOID WINAPI
......
...@@ -237,7 +237,7 @@ DATETIME_SetSystemTime (DATETIME_INFO *infoPtr, DWORD flag, const SYSTEMTIME *sy ...@@ -237,7 +237,7 @@ DATETIME_SetSystemTime (DATETIME_INFO *infoPtr, DWORD flag, const SYSTEMTIME *sy
* *'dddddd' is handled as 'dddd' plus 'dd'. * *'dddddd' is handled as 'dddd' plus 'dd'.
* *unrecognized formats are strings (here given the type DT_STRING; * *unrecognized formats are strings (here given the type DT_STRING;
* start of the string is encoded in lower bits of DT_STRING. * start of the string is encoded in lower bits of DT_STRING.
* Therefore, 'string' ends finally up as '<show seconds>tring'. * Therefore, 'string' ends up as '<show seconds>tring'.
* *
*/ */
static void static void
......
...@@ -2135,7 +2135,7 @@ REBAR_HandleUDDrag (REBAR_INFO *infoPtr, const POINT *ptsmove) ...@@ -2135,7 +2135,7 @@ REBAR_HandleUDDrag (REBAR_INFO *infoPtr, const POINT *ptsmove)
} }
else else
{ {
/* Place the band in the prexisting row the mouse is hovering over */ /* Place the band in the preexisting row the mouse is hovering over */
iRowBegin = first_visible(infoPtr); iRowBegin = first_visible(infoPtr);
while(iRowBegin < infoPtr->uNumBands) while(iRowBegin < infoPtr->uNumBands)
{ {
......
...@@ -951,7 +951,7 @@ static LRESULT SYSLINK_SetText (SYSLINK_INFO *infoPtr, LPCWSTR Text) ...@@ -951,7 +951,7 @@ static LRESULT SYSLINK_SetText (SYSLINK_INFO *infoPtr, LPCWSTR Text)
/*********************************************************************** /***********************************************************************
* SYSLINK_SetFocusLink * SYSLINK_SetFocusLink
* Updates the focus status bits and focusses the specified link. * Updates the focus status bits and focuses the specified link.
* If no document item is specified, the focus bit will be removed from all links. * If no document item is specified, the focus bit will be removed from all links.
* Returns the previous focused item. * Returns the previous focused item.
*/ */
......
...@@ -2164,7 +2164,7 @@ static void test_color_table(UINT ilc) ...@@ -2164,7 +2164,7 @@ static void test_color_table(UINT ilc)
rgb[2].rgbBlue = 0xff; rgb[2].rgbBlue = 0xff;
check_color_table("remove all, add 8", hdc, himl, ilc, rgb, default_table); check_color_table("remove all, add 8", hdc, himl, ilc, rgb, default_table);
/* remove all, add 4. Color table remains the same since it's inplicitly /* remove all, add 4. Color table remains the same since it's implicitly
been set by the previous _Add */ been set by the previous _Add */
ret = pImageList_Remove(himl, -1); ret = pImageList_Remove(himl, -1);
ok(ret, "got %d\n", ret); ok(ret, "got %d\n", ret);
......
...@@ -5691,7 +5691,7 @@ TOOLBAR_LButtonUp (TOOLBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam) ...@@ -5691,7 +5691,7 @@ TOOLBAR_LButtonUp (TOOLBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
if (nButton == infoPtr->nButtonDrag) if (nButton == infoPtr->nButtonDrag)
{ {
/* if the button is moved sightly left and we have a /* if the button is moved slightly left and we have a
* separator there then remove it */ * separator there then remove it */
if (pt.x < (btnPtr->rect.left + (btnPtr->rect.right - btnPtr->rect.left)/2)) if (pt.x < (btnPtr->rect.left + (btnPtr->rect.right - btnPtr->rect.left)/2))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment