Module: wine Branch: master Commit: 4c6a20ce222422222b79c3c9358cc02a94f2306b URL: http://source.winehq.org/git/wine.git/?a=commit;h=4c6a20ce222422222b79c3c935...
Author: André Hentschel nerv@dawncrow.de Date: Tue Jan 10 22:31:28 2012 +0100
winex11.drv: No need for WINE_ prefixed debug output macros.
---
dlls/winex11.drv/systray.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/winex11.drv/systray.c b/dlls/winex11.drv/systray.c index 7d5a0e9..0a581f3 100644 --- a/dlls/winex11.drv/systray.c +++ b/dlls/winex11.drv/systray.c @@ -367,7 +367,7 @@ static LRESULT WINAPI tray_icon_wndproc(HWND hwnd, UINT msg, WPARAM wparam, LPAR struct tray_icon *icon = NULL; BOOL ret;
- WINE_TRACE("hwnd=%p, msg=0x%x\n", hwnd, msg); + TRACE("hwnd=%p, msg=0x%x\n", hwnd, msg);
/* set the icon data for the window from the data passed into CreateWindow */ if (msg == WM_NCCREATE) @@ -661,17 +661,17 @@ static BOOL add_icon(NOTIFYICONDATAW *nid) { struct tray_icon *icon;
- WINE_TRACE("id=0x%x, hwnd=%p\n", nid->uID, nid->hWnd); + TRACE("id=0x%x, hwnd=%p\n", nid->uID, nid->hWnd);
if ((icon = get_icon(nid->hWnd, nid->uID))) { - WINE_WARN("duplicate tray icon add, buggy app?\n"); + WARN("duplicate tray icon add, buggy app?\n"); return FALSE; }
if (!(icon = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*icon)))) { - WINE_ERR("out of memory\n"); + ERR("out of memory\n"); return FALSE; }