aboutsummaryrefslogtreecommitdiff
path: root/src/application-service.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2009-11-30 12:34:53 -0600
committerTed Gould <ted@gould.cx>2009-11-30 12:34:53 -0600
commit672b7258707f3508ca4abe5fd1adee3847af5f94 (patch)
tree2a956b5d31898c8f613f5d7b5721b957d88d7397 /src/application-service.c
parentfdd8e217404d994989962352ae06a9f8215d524f (diff)
downloadayatana-indicator-application-672b7258707f3508ca4abe5fd1adee3847af5f94.tar.gz
ayatana-indicator-application-672b7258707f3508ca4abe5fd1adee3847af5f94.tar.bz2
ayatana-indicator-application-672b7258707f3508ca4abe5fd1adee3847af5f94.zip
Massive custom to application find and replace throughout the code.
Diffstat (limited to 'src/application-service.c')
-rw-r--r--src/application-service.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/application-service.c b/src/application-service.c
index 6d5f44d..56e3e80 100644
--- a/src/application-service.c
+++ b/src/application-service.c
@@ -8,9 +8,9 @@
/* The base main loop */
static GMainLoop * mainloop = NULL;
/* Where the application registry lives */
-static CustomServiceAppstore * appstore = NULL;
+static ApplicationServiceAppstore * appstore = NULL;
/* Interface for applications */
-static CustomServiceWatcher * watcher = NULL;
+static ApplicationServiceWatcher * watcher = NULL;
/* The service management interface */
static IndicatorService * service = NULL;
@@ -34,14 +34,14 @@ main (int argc, char ** argv)
g_type_init();
/* Bring us up as a basic indicator service */
- service = indicator_service_new(INDICATOR_CUSTOM_DBUS_ADDR);
+ service = indicator_service_new(INDICATOR_APPLICATION_DBUS_ADDR);
g_signal_connect(G_OBJECT(service), "disconnected", G_CALLBACK(service_disconnected), NULL);
/* Building our app store */
- appstore = CUSTOM_SERVICE_APPSTORE(g_object_new(CUSTOM_SERVICE_APPSTORE_TYPE, NULL));
+ appstore = APPLICATION_SERVICE_APPSTORE(g_object_new(APPLICATION_SERVICE_APPSTORE_TYPE, NULL));
/* Adding a watcher for the Apps coming up */
- watcher = custom_service_watcher_new(appstore);
+ watcher = application_service_watcher_new(appstore);
/* Building and executing our main loop */
mainloop = g_main_loop_new(NULL, FALSE);