diff options
author | Ted Gould <ted@gould.cx> | 2011-08-19 13:13:57 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-08-19 13:13:57 -0500 |
commit | 7f2161b7e2ab9902076a0e47fecac7796546fb4b (patch) | |
tree | ee79fe83b44218d2d0602f7c5a77c6092934ff6a | |
parent | 44b13c9408a1bfd2d47c6bb8a6df0b6b5127e001 (diff) | |
download | ayatana-indicator-session-7f2161b7e2ab9902076a0e47fecac7796546fb4b.tar.gz ayatana-indicator-session-7f2161b7e2ab9902076a0e47fecac7796546fb4b.tar.bz2 ayatana-indicator-session-7f2161b7e2ab9902076a0e47fecac7796546fb4b.zip |
Change name to settings helper
-rw-r--r-- | src/Makefile.am | 6 | ||||
-rw-r--r-- | src/device-menu-mgr.c | 2 | ||||
-rw-r--r-- | src/gtk-logout-helper.c | 2 | ||||
-rw-r--r-- | src/settings-helper.c (renamed from src/gconf-helper.c) | 2 | ||||
-rw-r--r-- | src/settings-helper.h (renamed from src/gconf-helper.h) | 0 | ||||
-rw-r--r-- | src/user-menu-mgr.c | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 9565545..dba0a9e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -96,7 +96,7 @@ indicator_session_service_SOURCES = \ session-dbus.h \ gen-session-dbus.xml.c \ dbusmenu-shared.h \ - gconf-helper.c \ + settings-helper.c \ users-service-dbus.h \ users-service-dbus.c \ user-menu-mgr.h \ @@ -126,8 +126,8 @@ indicator_session_service_LDADD = \ gtk_logout_helper_SOURCES = \ gtk-logout-helper.c \ - gconf-helper.c \ - gconf-helper.h \ + settings-helper.c \ + settings-helper.h \ dialog.c \ dialog.h diff --git a/src/device-menu-mgr.c b/src/device-menu-mgr.c index ef9567b..d07ae6a 100644 --- a/src/device-menu-mgr.c +++ b/src/device-menu-mgr.c @@ -21,7 +21,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include <libdbusmenu-gtk3/menuitem.h> #include "device-menu-mgr.h" -#include "gconf-helper.h" +#include "settings-helper.h" #include "dbus-shared-names.h" #include "dbusmenu-shared.h" #include "lock-helper.h" diff --git a/src/gtk-logout-helper.c b/src/gtk-logout-helper.c index b8923c6..33dce3a 100644 --- a/src/gtk-logout-helper.c +++ b/src/gtk-logout-helper.c @@ -26,7 +26,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include <gtk/gtk.h> #include <dbus/dbus-glib.h> #include "dialog.h" -#include "gconf-helper.h" +#include "settings-helper.h" static void consolekit_fallback (LogoutDialogType action) diff --git a/src/gconf-helper.c b/src/settings-helper.c index fad1275..bfe7a15 100644 --- a/src/gconf-helper.c +++ b/src/settings-helper.c @@ -29,7 +29,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include <libdbusmenu-glib/menuitem.h> #include "dbus-shared-names.h" -#include "gconf-helper.h" +#include "settings-helper.h" static GSettings* settings = NULL; diff --git a/src/gconf-helper.h b/src/settings-helper.h index 1adb269..1adb269 100644 --- a/src/gconf-helper.h +++ b/src/settings-helper.h diff --git a/src/user-menu-mgr.c b/src/user-menu-mgr.c index 3062f04..45e95dd 100644 --- a/src/user-menu-mgr.c +++ b/src/user-menu-mgr.c @@ -20,7 +20,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include <libdbusmenu-glib/client.h> #include "user-menu-mgr.h" -#include "gconf-helper.h" +#include "settings-helper.h" #include "dbus-shared-names.h" #include "dbusmenu-shared.h" #include "lock-helper.h" |