From a53ee521d0e388468fc3eca5789e9ab7acdbd510 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Wed, 23 Aug 2006 08:53:56 +0200 Subject: [PATCH] winecfg: Wrong text in messagebox. --- programs/winecfg/driveui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/winecfg/driveui.c b/programs/winecfg/driveui.c index f7557f9ee0f..0be623a8846 100644 --- a/programs/winecfg/driveui.c +++ b/programs/winecfg/driveui.c @@ -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);