Changeset 83072 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray
- Timestamp:
- Feb 14, 2020 10:48:14 AM (5 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxHelpers.cpp
r82968 r83072 25 25 26 26 #include "VBoxHelpers.h" 27 #include "resource.h"28 27 29 28 … … 298 297 { 299 298 /* Load (or retrieve handle of) the app's icon. */ 300 HICON hIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_VIRTUALBOX));299 HICON hIcon = LoadIcon(hInst, "IDI_ICON1"); /* see Artwork/win/TemplateR3.rc */ 301 300 if (hIcon) 302 301 niData.dwInfoFlags = NIIF_USER; /* Use an own notification icon. */ -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp
r82968 r83072 37 37 #include "VBoxLA.h" 38 38 #include <VBoxHook.h> 39 #include "resource.h"40 39 41 40 #include <sddl.h> … … 208 207 static int vboxTrayCreateTrayIcon(void) 209 208 { 210 HICON hIcon = LoadIcon(g_hInstance, MAKEINTRESOURCE(IDI_VIRTUALBOX));209 HICON hIcon = LoadIcon(g_hInstance, "IDI_ICON1"); /* see Artwork/win/TemplateR3.rc */ 211 210 if (hIcon == NULL) 212 211 {
Note:
See TracChangeset
for help on using the changeset viewer.