aboutsummaryrefslogtreecommitdiff
path: root/src/application-service-appstore.h
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-appstore.h
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-appstore.h')
-rw-r--r--src/application-service-appstore.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/application-service-appstore.h b/src/application-service-appstore.h
index 7263617..6a03f80 100644
--- a/src/application-service-appstore.h
+++ b/src/application-service-appstore.h
@@ -1,37 +1,37 @@
-#ifndef __CUSTOM_SERVICE_APPSTORE_H__
-#define __CUSTOM_SERVICE_APPSTORE_H__
+#ifndef __APPLICATION_SERVICE_APPSTORE_H__
+#define __APPLICATION_SERVICE_APPSTORE_H__
#include <glib.h>
#include <glib-object.h>
G_BEGIN_DECLS
-#define CUSTOM_SERVICE_APPSTORE_TYPE (custom_service_appstore_get_type ())
-#define CUSTOM_SERVICE_APPSTORE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CUSTOM_SERVICE_APPSTORE_TYPE, CustomServiceAppstore))
-#define CUSTOM_SERVICE_APPSTORE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CUSTOM_SERVICE_APPSTORE_TYPE, CustomServiceAppstoreClass))
-#define IS_CUSTOM_SERVICE_APPSTORE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CUSTOM_SERVICE_APPSTORE_TYPE))
-#define IS_CUSTOM_SERVICE_APPSTORE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CUSTOM_SERVICE_APPSTORE_TYPE))
-#define CUSTOM_SERVICE_APPSTORE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CUSTOM_SERVICE_APPSTORE_TYPE, CustomServiceAppstoreClass))
+#define APPLICATION_SERVICE_APPSTORE_TYPE (application_service_appstore_get_type ())
+#define APPLICATION_SERVICE_APPSTORE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), APPLICATION_SERVICE_APPSTORE_TYPE, ApplicationServiceAppstore))
+#define APPLICATION_SERVICE_APPSTORE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), APPLICATION_SERVICE_APPSTORE_TYPE, ApplicationServiceAppstoreClass))
+#define IS_APPLICATION_SERVICE_APPSTORE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), APPLICATION_SERVICE_APPSTORE_TYPE))
+#define IS_APPLICATION_SERVICE_APPSTORE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), APPLICATION_SERVICE_APPSTORE_TYPE))
+#define APPLICATION_SERVICE_APPSTORE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), APPLICATION_SERVICE_APPSTORE_TYPE, ApplicationServiceAppstoreClass))
-typedef struct _CustomServiceAppstore CustomServiceAppstore;
-typedef struct _CustomServiceAppstoreClass CustomServiceAppstoreClass;
+typedef struct _ApplicationServiceAppstore ApplicationServiceAppstore;
+typedef struct _ApplicationServiceAppstoreClass ApplicationServiceAppstoreClass;
-struct _CustomServiceAppstoreClass {
+struct _ApplicationServiceAppstoreClass {
GObjectClass parent_class;
};
-struct _CustomServiceAppstore {
+struct _ApplicationServiceAppstore {
GObject parent;
- void (*application_added) (CustomServiceAppstore * appstore, gchar *, gint, gchar *, gchar *, gpointer);
- void (*application_removed) (CustomServiceAppstore * appstore, gint, gpointer);
+ void (*application_added) (ApplicationServiceAppstore * appstore, gchar *, gint, gchar *, gchar *, gpointer);
+ void (*application_removed) (ApplicationServiceAppstore * appstore, gint, gpointer);
};
-GType custom_service_appstore_get_type (void);
-void custom_service_appstore_application_add (CustomServiceAppstore * appstore,
+GType application_service_appstore_get_type (void);
+void application_service_appstore_application_add (ApplicationServiceAppstore * appstore,
const gchar * dbus_name,
const gchar * dbus_object);
-void custom_service_appstore_application_remove (CustomServiceAppstore * appstore,
+void application_service_appstore_application_remove (ApplicationServiceAppstore * appstore,
const gchar * dbus_name,
const gchar * dbus_object);