Commit a53ee521 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

winecfg: Wrong text in messagebox.

parent 3a04565b
......@@ -55,7 +55,7 @@ static void update_controls(HWND dialog);
static DWORD driveui_msgbox (HWND parent, UINT messageId, DWORD flags)
{
WCHAR* caption = load_string (IDS_WINECFG_TITLE);
WCHAR* text = load_string (flags);
WCHAR* text = load_string (messageId);
DWORD result = MessageBoxW (parent, text, caption, flags);
HeapFree (GetProcessHeap(), 0, caption);
HeapFree (GetProcessHeap(), 0, text);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment