Module: wine Branch: master Commit: b8f2302776d23c396202395f31cf4b3850d34be3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b8f2302776d23c396202395f31...
Author: Joel Holdsworth joel@airwebreathe.org.uk Date: Tue Apr 20 23:50:48 2010 +0100
taskmgr: Show a 48x48 icon in the about box.
---
programs/taskmgr/about.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/taskmgr/about.c b/programs/taskmgr/about.c index 68d64ca..c165f25 100644 --- a/programs/taskmgr/about.c +++ b/programs/taskmgr/about.c @@ -40,5 +40,5 @@ void OnAbout(void) '<','b','r','i','a','n','p','@','r','e','a','c','t','o','s','.','o','r','g','>',0}; LoadStringW( hInst, IDC_TASKMGR, appname, sizeof(appname)/sizeof(WCHAR) ); ShellAboutW( hMainWnd, appname, copy, - LoadImageA( hInst, (LPSTR)IDI_TASKMANAGER, IMAGE_ICON, 32, 32, LR_SHARED )); + LoadImageA( hInst, (LPSTR)IDI_TASKMANAGER, IMAGE_ICON, 48, 48, LR_SHARED )); }