Ignore:
Timestamp:
Jun 3, 2000, 9:18:54 AM (25 years ago)
Author:
sandervl
Message:

systray bugfix

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:51 sandervl Exp $ */
     1/* $Id: systray.cpp,v 1.3 2000-06-03 07:18:54 sandervl Exp $ */
    22/*
    33 *      Systray
     
    4848static int nNumberTrayElements;
    4949
     50#define SYSTRAY_CLASS "OdinSysTray"
    5051
    5152static BOOL SYSTRAY_Delete(PNOTIFYICONDATAW pnid,BOOL unicode);
     
    167168  wc.hbrBackground = (HBRUSH)(COLOR_WINDOW);
    168169  wc.lpszMenuName  = NULL;
    169   wc.lpszClassName = "WineSystray";
     170  wc.lpszClassName = SYSTRAY_CLASS;
    170171
    171172  if (!RegisterClassA(&wc)) {
     
    199200  /* Create tray window for icon. */
    200201  ptrayItem->hWnd = CreateWindowExA( WS_EX_TRAYWINDOW,
    201                                 "OdinSystray", "Odin-Systray",
     202                                SYSTRAY_CLASS, "Odin-Systray",
    202203                                WS_VISIBLE | WS_POPUP,
    203204                                CW_USEDEFAULT, CW_USEDEFAULT,
Note: See TracChangeset for help on using the changeset viewer.