diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-22 15:35:52 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-22 15:35:52 +0000 |
| commit | 68ca748737bbf5af57888872a9c072415e609d23 (patch) | |
| tree | bc03b77a1e976e7672ea3b26c6ddd61df265776a /sources/core/VSTask.java | |
| parent | f7b023c5cff7dae854a015889bd217f3b84f6e07 (diff) | |
Simplemode/expertmode bugfix.
Diffstat (limited to 'sources/core/VSTask.java')
| -rw-r--r-- | sources/core/VSTask.java | 4 |
1 files changed, 3 insertions, 1 deletions
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(); } |
