Module: wine Branch: master Commit: a53ee521d0e388468fc3eca5789e9ab7acdbd510 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=a53ee521d0e388468fc3eca5...
Author: Paul Vriens Paul.Vriens@xs4all.nl Date: Wed Aug 23 08:53:56 2006 +0200
winecfg: Wrong text in messagebox.
---
programs/winecfg/driveui.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/winecfg/driveui.c b/programs/winecfg/driveui.c index f7557f9..0be623a 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);