From e48f87b613be52914d43fa74e63bcc11d7ef2dec Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 1 Jul 2008 21:30:25 +0200 Subject: rename smartkit to g-d-h internally --- gnome-disk-health.vala | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'gnome-disk-health.vala') diff --git a/gnome-disk-health.vala b/gnome-disk-health.vala index a3fcd4d..20bcd96 100644 --- a/gnome-disk-health.vala +++ b/gnome-disk-health.vala @@ -1,22 +1,22 @@ /*-*- Mode: C; c-basic-offset: 8 -*-*/ /*** - This file is part of SmartKit. + This file is part of gnome-disk-health. Copyright 2008 Lennart Poettering - SmartKit is free software; you can redistribute it and/or modify + gnome-disk-health is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or (at your option) any later version. - SmartKit is distributed in the hope that it will be useful, but + gnome-disk-health is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with SmartKit. If not, If not, see + License along with gnome-disk-health. If not, If not, see . ***/ @@ -88,7 +88,7 @@ public class DiskHealth : Gtk.Builder { try { connection = DBus.Bus.get(DBus.BusType.SYSTEM); - manager = connection.get_object("net.poettering.SmartKit", "/", "net.poettering.SmartKit.Manager"); + manager = connection.get_object("net.poettering.GnomeDiskHealth", "/", "net.poettering.GnomeDiskHealth.Manager"); DBus.ObjectPath p; @@ -104,7 +104,7 @@ public class DiskHealth : Gtk.Builder { stderr.printf("Using D-Bus path %s\n", p); - disk = connection.get_object("net.poettering.SmartKit", p, "net.poettering.SmartKit.Disk"); + disk = connection.get_object("net.poettering.GnomeDiskHealth", p, "net.poettering.GnomeDiskHealth.Disk"); } catch (DBus.Error e) { stderr.printf("D-Bus error: %s\n", e.message); return false; @@ -276,7 +276,7 @@ public class DiskHealth : Gtk.Builder { string pretty_unit; uint8 current, worst, threshold; - attribute = connection.get_object("net.poettering.SmartKit", a, "net.poettering.SmartKit.Attribute"); + attribute = connection.get_object("net.poettering.GnomeDiskHealth", a, "net.poettering.GnomeDiskHealth.Attribute"); /* id, name, text, icon, current, worst, threshold, type, verdict */ -- cgit