[REACTOS][CPL] Coding style fixes only

This commit is contained in:
Stanislav Motylkov 2022-10-04 21:14:31 +03:00
parent ff3d1b7bb1
commit d5bd08fca4
No known key found for this signature in database
GPG key ID: AFE513258CBA9E92
5 changed files with 5 additions and 5 deletions

View file

@ -100,7 +100,7 @@ LRESULT CALLBACK WndProc ( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
case WM_DRAWITEM:
{
LPDRAWITEMSTRUCT lpDrawItem = (LPDRAWITEMSTRUCT) lParam;
LPDRAWITEMSTRUCT lpDrawItem = (LPDRAWITEMSTRUCT)lParam;
DrawText ( lpDrawItem->hDC, "SS_DRAWITEM test successful!", 28, &(lpDrawItem->rcItem), 0 );
}
break;