chiark / gitweb /
mounts: reindent table
[elogind.git] / src / systemadm.vala
index 3f1cf9e1138bf9d0acebed3ee4542afd3f57f096..9e4a2a23409c88ed7dd1130088519191ae20d48a 100644 (file)
@@ -502,10 +502,12 @@ public class MainWindow : Window {
                 unit_load_state_label.set_text_or_na(unit.load_state);
                 unit_active_state_label.set_text_or_na(unit.active_state);
                 unit_sub_state_label.set_text_or_na(unit.sub_state);
-                if (unit.fragment_path != null)
-                        unit_fragment_path_label.set_markup_or_na("<a href=\"file://" + unit.fragment_path +"\">" + unit.fragment_path + "</a>" );
+
+                string fp = unit.fragment_path;
+                if (fp != "")
+                        unit_fragment_path_label.set_markup_or_na("<a href=\"file://" + fp +"\">" + fp + "</a>" );
                 else
-                        unit_fragment_path_label.set_markup_or_na(null);
+                        unit_fragment_path_label.set_text_or_na();
 
                 uint64 t = unit.active_enter_timestamp;
                 if (t > 0) {
@@ -726,7 +728,7 @@ public class MainWindow : Window {
                 } while (unit_model.iter_next(ref iter));
         }
 
-        public void on_job_removed(uint32 id, ObjectPath path) {
+        public void on_job_removed(uint32 id, ObjectPath path, bool success) {
                 TreeIter iter;
                 if (!(job_model.get_iter_first(out iter)))
                         return;