new "Description" column for processes

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@470 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
wj32
2009-01-08 05:07:19 +00:00
parent da8bddf7b6
commit ee04bfbe3d
5 changed files with 63 additions and 5 deletions
@@ -216,6 +216,8 @@ namespace ProcessHacker
return ModifySort(n1.ProcessItem.CPUUsage.CompareTo(n2.ProcessItem.CPUUsage), sortO);
else if (sortC == "username")
return ModifySort(n1.Username.CompareTo(n2.Username), sortO);
else if (sortC == "description")
return ModifySort(n1.Description.CompareTo(n2.Description), sortO);
else
return 0;
}));