mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 19:26:05 +00:00
Fix warnings I introduced, forgot typecasts...
svn path=/trunk/; revision=27710
This commit is contained in:
@@ -734,7 +734,7 @@ static HWND DIALOG_CreateIndirect( HINSTANCE hInst, LPCVOID dlgTemplate,
|
||||
|
||||
if (unicode)
|
||||
{
|
||||
hwnd = User32CreateWindowEx(template.exStyle, template.className, template.caption,
|
||||
hwnd = User32CreateWindowEx(template.exStyle, (LPCSTR)template.className, (LPCSTR)template.caption,
|
||||
template.style & ~WS_VISIBLE,
|
||||
rect.left, rect.top, rect.right, rect.bottom,
|
||||
owner, hMenu, hInst, NULL,
|
||||
|
||||
Reference in New Issue
Block a user