mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 19:13:38 +00:00
Fix warnings I introduced, forgot typecasts...
svn path=/trunk/; revision=27710
This commit is contained in:
parent
532d977072
commit
f2bbc79cf7
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue