From ff876005fea4f971036260591c114ac759c20c1b Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 27 Mar 2008 13:44:04 +0100 Subject: [PATCH] winefile: Use the larger icon in the About box. --- programs/winefile/winefile.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/programs/winefile/winefile.c b/programs/winefile/winefile.c index 6d6fb48e3b..df6058c559 100644 --- a/programs/winefile/winefile.c +++ b/programs/winefile/winefile.c @@ -2518,7 +2518,9 @@ static LRESULT CALLBACK FrameWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM break; case ID_ABOUT: - ShellAbout(hwnd, RS(b1,IDS_WINEFILE), NULL, 0); + ShellAbout(hwnd, RS(b1,IDS_WINEFILE), NULL, + LoadImage( Globals.hInstance, MAKEINTRESOURCE(IDI_WINEFILE), + IMAGE_ICON, 48, 48, LR_SHARED )); break; default: -- 2.32.0.93.g670b81a890