Fix indentation for consistency with the rest of the file.

This commit is contained in:
Dimitrie O. Paun 2005-03-02 10:08:29 +00:00 committed by Alexandre Julliard
parent 4c5832ba65
commit 5dfdd18abc

View File

@ -162,8 +162,7 @@ STATUSBAR_DrawPart (STATUS_INFO *infoPtr, HDC hdc, STATUSWINDOWPART *part, int i
DrawEdge(hdc, &r, border, BF_RECT|BF_ADJUST); DrawEdge(hdc, &r, border, BF_RECT|BF_ADJUST);
if (part->style & SBT_OWNERDRAW) if (part->style & SBT_OWNERDRAW) {
{
DRAWITEMSTRUCT dis; DRAWITEMSTRUCT dis;
dis.CtlID = GetWindowLongPtrW (infoPtr->Self, GWLP_ID); dis.CtlID = GetWindowLongPtrW (infoPtr->Self, GWLP_ID);
@ -173,11 +172,8 @@ STATUSBAR_DrawPart (STATUS_INFO *infoPtr, HDC hdc, STATUSWINDOWPART *part, int i
dis.rcItem = r; dis.rcItem = r;
dis.itemData = (INT)part->text; dis.itemData = (INT)part->text;
SendMessageW (infoPtr->Notify, WM_DRAWITEM, (WPARAM)dis.CtlID, (LPARAM)&dis); SendMessageW (infoPtr->Notify, WM_DRAWITEM, (WPARAM)dis.CtlID, (LPARAM)&dis);
} } else {
else if (part->hIcon) {
{
if (part->hIcon)
{
INT cy = r.bottom - r.top; INT cy = r.bottom - r.top;
r.left += 2; r.left += 2;
@ -216,8 +212,7 @@ STATUSBAR_RefreshPart (STATUS_INFO *infoPtr, HDC hdc, STATUSWINDOWPART *part, in
if (infoPtr->clrBk != CLR_DEFAULT) if (infoPtr->clrBk != CLR_DEFAULT)
DeleteObject (hbrBk); DeleteObject (hbrBk);
if (GetWindowLongW (infoPtr->Self, GWL_STYLE) & SBARS_SIZEGRIP) if (GetWindowLongW (infoPtr->Self, GWL_STYLE) & SBARS_SIZEGRIP) {
{
RECT rect; RECT rect;
GetClientRect (infoPtr->Self, &rect); GetClientRect (infoPtr->Self, &rect);
@ -745,8 +740,7 @@ STATUSBAR_SetTipTextA (STATUS_INFO *infoPtr, INT id, LPSTR text)
ti.uId = id; ti.uId = id;
ti.hinst = 0; ti.hinst = 0;
ti.lpszText = text; ti.lpszText = text;
SendMessageA (infoPtr->hwndToolTip, TTM_UPDATETIPTEXTA, SendMessageA (infoPtr->hwndToolTip, TTM_UPDATETIPTEXTA, 0, (LPARAM)&ti);
0, (LPARAM)&ti);
} }
return 0; return 0;
@ -764,8 +758,7 @@ STATUSBAR_SetTipTextW (STATUS_INFO *infoPtr, INT id, LPWSTR text)
ti.uId = id; ti.uId = id;
ti.hinst = 0; ti.hinst = 0;
ti.lpszText = text; ti.lpszText = text;
SendMessageW (infoPtr->hwndToolTip, TTM_UPDATETIPTEXTW, SendMessageW (infoPtr->hwndToolTip, TTM_UPDATETIPTEXTW, 0, (LPARAM)&ti);
0, (LPARAM)&ti);
} }
return 0; return 0;
@ -1089,8 +1082,7 @@ STATUSBAR_WMSize (STATUS_INFO *infoPtr, WORD flags)
/* Need to resize width to match parent */ /* Need to resize width to match parent */
TRACE("flags %04x\n", flags); TRACE("flags %04x\n", flags);
if (flags != SIZE_RESTORED && flags != SIZE_MAXIMIZED) if (flags != SIZE_RESTORED && flags != SIZE_MAXIMIZED) {
{
WARN("flags MUST be SIZE_RESTORED or SIZE_MAXIMIZED\n"); WARN("flags MUST be SIZE_RESTORED or SIZE_MAXIMIZED\n");
return FALSE; return FALSE;
} }