summaryrefslogtreecommitdiff
path: root/xfconfd/xfconf-daemon.c
diff options
context:
space:
mode:
authorBrian Tarricone <brian@tarricone.org>2007-09-06 03:08:14 +0000
committerBrian Tarricone <brian@tarricone.org>2007-09-06 03:08:14 +0000
commit8fcfd81ddc2f00ef70972f9a8754a95d24199a5e (patch)
tree90768125d1fc87e204c7283037a9abf8c61a7fe0 /xfconfd/xfconf-daemon.c
parent9b88b770fa3f76a55da25261c778162a748263a3 (diff)
downloadxfconf-8fcfd81ddc2f00ef70972f9a8754a95d24199a5e.tar.gz
do some cosmetic renaming
(Old svn revision: 26723)
Diffstat (limited to 'xfconfd/xfconf-daemon.c')
-rw-r--r--xfconfd/xfconf-daemon.c132
1 files changed, 66 insertions, 66 deletions
diff --git a/xfconfd/xfconf-daemon.c b/xfconfd/xfconf-daemon.c
index 68a13d7..3a42e62 100644
--- a/xfconfd/xfconf-daemon.c
+++ b/xfconfd/xfconf-daemon.c
@@ -30,41 +30,41 @@
#include "xfconf-marshal.h"
-static gboolean xfconfd_set_property(XfconfDaemon *xfconfd,
- const gchar *channel,
- const gchar *property,
- const GValue *value,
- GError **error);
-static gboolean xfconfd_get_property(XfconfDaemon *xfconfd,
- const gchar *channel,
- const gchar *property,
- GValue *value,
- GError **error);
-static gboolean xfconfd_get_all_properties(XfconfDaemon *xfconfd,
- const gchar *channel,
- GHashTable **properties,
- GError **error);
-static gboolean xfconfd_property_exists(XfconfDaemon *xfconfd,
- const gchar *channel,
- const gchar *property,
- gboolean *exists,
- GError **error);
-static gboolean xfconfd_remove_property(XfconfDaemon *xfconfd,
- const gchar *channel,
- const gchar *property,
- GError **error);
-static gboolean xfconfd_remove_channel(XfconfDaemon *xfconfd,
+static gboolean xfconf_set_property(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ const gchar *property,
+ const GValue *value,
+ GError **error);
+static gboolean xfconf_get_property(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ const gchar *property,
+ GValue *value,
+ GError **error);
+static gboolean xfconf_get_all_properties(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ GHashTable **properties,
+ GError **error);
+static gboolean xfconf_property_exists(XfconfDaemon *xfconfd,
const gchar *channel,
+ const gchar *property,
+ gboolean *exists,
+ GError **error);
+static gboolean xfconf_remove_property(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ const gchar *property,
+ GError **error);
+static gboolean xfconf_remove_channel(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ GError **error);
+static gboolean xfconf_gui_show_list(XfconfDaemon *xfconfd,
+ const gchar *display,
+ GError **error);
+static gboolean xfconf_gui_show_plugin(XfconfDaemon *xfconfd,
+ const gchar *display,
+ const gchar *name,
GError **error);
-static gboolean xfconfd_show_list(XfconfDaemon *xfconfd,
- const gchar *display,
- GError **error);
-static gboolean xfconfd_show_plugin(XfconfDaemon *xfconfd,
- const gchar *display,
- const gchar *name,
- GError **error);
-#include "xfconfd-dbus-server.h"
+#include "xfconf-dbus-server.h"
struct _XfconfDaemon
{
@@ -101,7 +101,7 @@ xfconf_daemon_class_init(XfconfDaemonClass *klass)
G_TYPE_STRING, G_TYPE_STRING);
dbus_g_object_type_install_info(G_TYPE_FROM_CLASS(klass),
- &dbus_glib_xfconfd_object_info);
+ &dbus_glib_xfconf_object_info);
}
static void
@@ -129,21 +129,21 @@ xfconf_daemon_finalize(GObject *obj)
static gboolean
-xfconfd_set_property(XfconfDaemon *xfconfd,
- const gchar *channel,
- const gchar *property,
- const GValue *value,
- GError **error)
+xfconf_set_property(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ const gchar *property,
+ const GValue *value,
+ GError **error)
{
return xfconf_backend_set(xfconfd->backend, channel, property, value, error);
}
static gboolean
-xfconfd_get_property(XfconfDaemon *xfconfd,
- const gchar *channel,
- const gchar *property,
- GValue *value,
- GError **error)
+xfconf_get_property(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ const gchar *property,
+ GValue *value,
+ GError **error)
{
/* FIXME: presumably, |value| leaks. how do we fix this? perhaps
* using the org.freedesktop.DBus.GLib.Async annotation? */
@@ -151,10 +151,10 @@ xfconfd_get_property(XfconfDaemon *xfconfd,
}
static gboolean
-xfconfd_get_all_properties(XfconfDaemon *xfconfd,
- const gchar *channel,
- GHashTable **properties,
- GError **error)
+xfconf_get_all_properties(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ GHashTable **properties,
+ GError **error)
{
gboolean ret;
@@ -177,36 +177,36 @@ xfconfd_get_all_properties(XfconfDaemon *xfconfd,
}
static gboolean
-xfconfd_property_exists(XfconfDaemon *xfconfd,
- const gchar *channel,
- const gchar *property,
- gboolean *exists,
- GError **error)
+xfconf_property_exists(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ const gchar *property,
+ gboolean *exists,
+ GError **error)
{
return xfconf_backend_exists(xfconfd->backend, channel, property, exists, error);
}
static gboolean
-xfconfd_remove_property(XfconfDaemon *xfconfd,
- const gchar *channel,
- const gchar *property,
- GError **error)
+xfconf_remove_property(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ const gchar *property,
+ GError **error)
{
return xfconf_backend_remove(xfconfd->backend, channel, property, error);
}
static gboolean
-xfconfd_remove_channel(XfconfDaemon *xfconfd,
- const gchar *channel,
- GError **error)
+xfconf_remove_channel(XfconfDaemon *xfconfd,
+ const gchar *channel,
+ GError **error)
{
return xfconf_backend_remove_channel(xfconfd->backend, channel, error);
}
static gboolean
-xfconfd_show_list(XfconfDaemon *xfconfd,
- const gchar *display,
- GError **error)
+xfconf_gui_show_list(XfconfDaemon *xfconfd,
+ const gchar *display,
+ GError **error)
{
gchar *command;
gboolean ret;
@@ -225,10 +225,10 @@ xfconfd_show_list(XfconfDaemon *xfconfd,
}
static gboolean
-xfconfd_show_plugin(XfconfDaemon *xfconfd,
- const gchar *display,
- const gchar *name,
- GError **error)
+xfconf_gui_show_plugin(XfconfDaemon *xfconfd,
+ const gchar *display,
+ const gchar *name,
+ GError **error)
{
gchar *command;
gboolean ret;