Changeset 3653 for trunk/src/shell32/systray.cpp
- Timestamp:
- Jun 3, 2000, 9:18:54 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/systray.cpp
r3505 r3653 1 /* $Id: systray.cpp,v 1. 2 2000-05-09 19:01:51sandervl Exp $ */1 /* $Id: systray.cpp,v 1.3 2000-06-03 07:18:54 sandervl Exp $ */ 2 2 /* 3 3 * Systray … … 48 48 static int nNumberTrayElements; 49 49 50 #define SYSTRAY_CLASS "OdinSysTray" 50 51 51 52 static BOOL SYSTRAY_Delete(PNOTIFYICONDATAW pnid,BOOL unicode); … … 167 168 wc.hbrBackground = (HBRUSH)(COLOR_WINDOW); 168 169 wc.lpszMenuName = NULL; 169 wc.lpszClassName = "WineSystray";170 wc.lpszClassName = SYSTRAY_CLASS; 170 171 171 172 if (!RegisterClassA(&wc)) { … … 199 200 /* Create tray window for icon. */ 200 201 ptrayItem->hWnd = CreateWindowExA( WS_EX_TRAYWINDOW, 201 "OdinSystray", "Odin-Systray",202 SYSTRAY_CLASS, "Odin-Systray", 202 203 WS_VISIBLE | WS_POPUP, 203 204 CW_USEDEFAULT, CW_USEDEFAULT,
Note:
See TracChangeset
for help on using the changeset viewer.