From 68ca748737bbf5af57888872a9c072415e609d23 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 22 May 2008 15:35:52 +0000 Subject: Simplemode/expertmode bugfix. --- sources/core/VSTask.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sources/core/VSTask.java') diff --git a/sources/core/VSTask.java b/sources/core/VSTask.java index b8a773a..8f1e634 100644 --- a/sources/core/VSTask.java +++ b/sources/core/VSTask.java @@ -63,7 +63,7 @@ public class VSTask implements Comparable { } public boolean isProcess(VSProcess process) { - return process.equals(process); + return this.process.equals(process); } public boolean isGlobalTimed() { @@ -98,6 +98,8 @@ public class VSTask implements Comparable { buffer.append(" "); buffer.append(getTaskTime()); buffer.append(event.toString()); + buffer.append("; PID: "); + buffer.append(process.getProcessID()); return buffer.toString(); } -- cgit v1.2.3