mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-29 14:17:07 -06:00
SysInfo_Demo_gui: Handles ported to int64
git-svn-id: svn://ultimatepp.org/upp/trunk@6029 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
2c6dc97a9e
commit
16e63805e5
1 changed files with 2 additions and 2 deletions
|
|
@ -235,7 +235,7 @@ void WindowsList_::Fill() {
|
|||
Windows.AddColumn("Process Id", 6);
|
||||
Windows.AddColumn("Name", 20);
|
||||
Windows.AddColumn("File name", 30);
|
||||
Array<uint64> widL, pidL;
|
||||
Array<int64> widL, pidL;
|
||||
Array<String> name, fileName, caption;
|
||||
GetWindowsList(widL, pidL, name, fileName, caption);
|
||||
for (int i = 0; i < widL.GetCount(); ++i)
|
||||
|
|
@ -252,7 +252,7 @@ void ProcessList::Fill() {
|
|||
Process.AddColumn("Id", 6);
|
||||
Process.AddColumn("Priority", 6);
|
||||
Process.AddColumn("Program", 12);
|
||||
Array<uint64> pidL;
|
||||
Array<int64> pidL;
|
||||
pidL.Clear();
|
||||
Array<String> pNames;
|
||||
if (!GetProcessList(pidL, pNames))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue