Module: wine Branch: master Commit: 678a0e1eb5fb035e474f1b2103c87fe78505011b URL: http://source.winehq.org/git/wine.git/?a=commit;h=678a0e1eb5fb035e474f1b2103...
Author: Francois Gouget fgouget@free.fr Date: Thu Feb 5 00:19:35 2009 +0100
taskmgr: Make TrayIcon_GetProcessorUsageIcon() static.
---
programs/taskmgr/taskmgr.h | 1 - programs/taskmgr/trayicon.c | 2 +- 2 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/programs/taskmgr/taskmgr.h b/programs/taskmgr/taskmgr.h index 59a23e2..f6df582 100644 --- a/programs/taskmgr/taskmgr.h +++ b/programs/taskmgr/taskmgr.h @@ -176,7 +176,6 @@ void ProcessPage_OnDebugChannels(void);
#define WM_ONTRAYICON WM_USER + 5
-HICON TrayIcon_GetProcessorUsageIcon(void); BOOL TrayIcon_ShellAddTrayIcon(void); BOOL TrayIcon_ShellRemoveTrayIcon(void); BOOL TrayIcon_ShellUpdateTrayIcon(void); diff --git a/programs/taskmgr/trayicon.c b/programs/taskmgr/trayicon.c index 36a2bcc..35740dd 100644 --- a/programs/taskmgr/trayicon.c +++ b/programs/taskmgr/trayicon.c @@ -33,7 +33,7 @@ #include "taskmgr.h" #include "perfdata.h"
-HICON TrayIcon_GetProcessorUsageIcon(void) +static HICON TrayIcon_GetProcessorUsageIcon(void) { HICON hTrayIcon = NULL; HDC hScreenDC = NULL;