Add calculator icon

svn path=/trunk/; revision=20857
This commit is contained in:
Ged Murphy
2006-01-14 17:59:59 +00:00
parent 9cf3463d87
commit 14bce6bfdf
4 changed files with 5 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

+2
View File
@@ -32,6 +32,8 @@
#define IDM_SEPARATOR3 1010
#define IDM_WHATS_THIS 1011
#define IDI_CALCICON 1050
/* strings */
#define IDS_APPNAME 1100
+2
View File
@@ -21,6 +21,8 @@
#include <windows.h>
#include "resource.h"
IDI_CALCICON ICON "calculator.ico"
#include "En.rc"
#include "Cz.rc"
#include "De.rc"
+1 -1
View File
@@ -172,7 +172,7 @@ int WINAPI WinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmd
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = hInst;
wc.hIcon = LoadIcon( hInst, appname );
wc.hIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_CALCICON));
wc.hCursor = LoadCursor( NULL, IDI_APPLICATION );
wc.hbrBackground = (HBRUSH)(COLOR_BTNFACE+1);
wc.lpszMenuName = NULL;