diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-02-24 02:36:34 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-02-24 02:36:34 +0100 |
commit | 5d44db4a905c62d6cf0dfabbf61df49621efec22 (patch) | |
tree | 0bf5cecb59eaf0e55e29a3f0b77fc69ce6f15c55 /src/systemadm.vala | |
parent | ccc80078fe47395ffe0dd48cb6c81551d991ef4b (diff) |
dbus: pass along information why a job failed when it failed (dbus api change!)
Diffstat (limited to 'src/systemadm.vala')
-rw-r--r-- | src/systemadm.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemadm.vala b/src/systemadm.vala index 33777b6b8b..c262794cb7 100644 --- a/src/systemadm.vala +++ b/src/systemadm.vala @@ -762,7 +762,7 @@ public class MainWindow : Window { } while (unit_model.iter_next(ref iter)); } - public void on_job_removed(uint32 id, ObjectPath path, bool success) { + public void on_job_removed(uint32 id, ObjectPath path, string res) { TreeIter iter; if (!(job_model.get_iter_first(out iter))) return; |