Author: hbelusca
Date: Wed Mar 4 22:13:31 2015
New Revision: 66566
URL:
http://svn.reactos.org/svn/reactos?rev=66566&view=rev
Log:
Errm... fix build.
Modified:
trunk/reactos/base/setup/welcome/welcome.c
Modified: trunk/reactos/base/setup/welcome/welcome.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/setup/welcome/welcome…
==============================================================================
--- trunk/reactos/base/setup/welcome/welcome.c [iso-8859-1] (original)
+++ trunk/reactos/base/setup/welcome/welcome.c [iso-8859-1] Wed Mar 4 22:13:31 2015
@@ -653,7 +653,7 @@
SetBkMode(hdc, TRANSPARENT);
/* Draw version information */
- _tsprintf(version, TEXT("ReactOS %d.%d.%d"),
+ _stprintf(version, TEXT("ReactOS %d.%d.%d"),
KERNEL_VERSION_MAJOR,
KERNEL_VERSION_MINOR,
KERNEL_VERSION_PATCH_LEVEL);
@@ -712,7 +712,7 @@
UNREFERENCED_PARAMETER(hWnd);
UNREFERENCED_PARAMETER(wParam);
- if (lpDis->hWndItem == hWndCloseButton)
+ if (lpDis->hwndItem == hWndCloseButton)
{
DrawFrameControl(lpDis->hDC,
&lpDis->rcItem,
@@ -743,7 +743,7 @@
InflateRect(&lpDis->rcItem, -10, -4);
OffsetRect(&lpDis->rcItem, 0, 1);
- GetWindowText(lpDis->hWndItem, szText, ARRAYSIZE(szText));
+ GetWindowText(lpDis->hwndItem, szText, ARRAYSIZE(szText));
SetTextColor(lpDis->hDC, 0x00000000);
iBkMode = SetBkMode(lpDis->hDC, TRANSPARENT);
DrawText(lpDis->hDC, szText, -1, &lpDis->rcItem, DT_TOP | DT_LEFT |
DT_WORDBREAK);