Module: wine Branch: master Commit: c0c857cbc687df336f13dfc0393f9b9f066b7e56 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c0c857cbc687df336f13dfc039...
Author: Andrew Nguyen anguyen@codeweavers.com Date: Tue May 17 05:15:08 2011 -0500
taskmgr: Remove all TCHAR macro usage in priority handling code.
---
programs/taskmgr/priority.c | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/programs/taskmgr/priority.c b/programs/taskmgr/priority.c index 1a5ea37..49f23a2 100644 --- a/programs/taskmgr/priority.c +++ b/programs/taskmgr/priority.c @@ -36,7 +36,7 @@ static void DoSetPriority(DWORD priority) { LVITEMW lvitem; - ULONG Index; + ULONG Index, Count; DWORD dwProcessId; HANDLE hProcess; WCHAR wstrErrorText[256]; @@ -49,7 +49,8 @@ static void DoSetPriority(DWORD priority) LoadStringW(hInst, IDS_WARNING_TITLE, wszWarnTitle, sizeof(wszWarnTitle)/sizeof(WCHAR)); LoadStringW(hInst, IDS_PRIORITY_UNABLE2CHANGE, wszUnable2Change, sizeof(wszUnable2Change)/sizeof(WCHAR));
- for (Index=0; Index<(ULONG)ListView_GetItemCount(hProcessPageListCtrl); Index++) + Count = SendMessageW(hProcessPageListCtrl, LVM_GETITEMCOUNT, 0, 0); + for (Index=0; Index<Count; Index++) { lvitem.mask = LVIF_STATE; lvitem.stateMask = LVIS_SELECTED; @@ -62,9 +63,9 @@ static void DoSetPriority(DWORD priority) break; }
+ Count = SendMessageW(hProcessPageListCtrl, LVM_GETSELECTEDCOUNT, 0, 0); dwProcessId = PerfDataGetProcessId(Index); - - if ((ListView_GetSelectedCount(hProcessPageListCtrl) != 1) || (dwProcessId == 0)) + if ((Count != 1) || (dwProcessId == 0)) return;
if (MessageBoxW(hMainWnd, wszWarnMsg, wszWarnTitle, MB_YESNO|MB_ICONWARNING) != IDYES)