summaryrefslogtreecommitdiff
path: root/libpeas/peas-extension-set.h
diff options
context:
space:
mode:
authorGarrett Regier <alias301@gmail.com>2010-06-29 03:43:48 -0700
committerGarrett Regier <alias301@gmail.com>2010-06-29 03:48:14 -0700
commite96a37e6255bfc9abe1bc718b3c222219dff3da8 (patch)
treec26e3f0d61f47fe84f49874d821bd1b4f7fe2500 /libpeas/peas-extension-set.h
parent9973683e7db93543af33faa55b2e0eac700888b4 (diff)
downloadlibpeas-e96a37e6255bfc9abe1bc718b3c222219dff3da8.tar.gz
Coding style fixes
Diffstat (limited to 'libpeas/peas-extension-set.h')
-rw-r--r--libpeas/peas-extension-set.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/libpeas/peas-extension-set.h b/libpeas/peas-extension-set.h
index dee226a..4aa78c0 100644
--- a/libpeas/peas-extension-set.h
+++ b/libpeas/peas-extension-set.h
@@ -37,12 +37,13 @@ G_BEGIN_DECLS
#define PEAS_IS_EXTENSION_SET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PEAS_TYPE_EXTENSION_SET))
#define PEAS_EXTENSION_SET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PEAS_TYPE_EXTENSION_SET, PeasExtensionSetClass))
-typedef struct _PeasExtensionSet PeasExtensionSet;
-typedef struct _PeasExtensionSetClass PeasExtensionSetClass;
-typedef struct _PeasExtensionSetPrivate PeasExtensionSetPrivate;
+typedef struct _PeasExtensionSet PeasExtensionSet;
+typedef struct _PeasExtensionSetClass PeasExtensionSetClass;
+typedef struct _PeasExtensionSetPrivate PeasExtensionSetPrivate;
struct _PeasExtensionSet {
GObject parent;
+
PeasExtensionSetPrivate *priv;
};
@@ -55,12 +56,12 @@ struct _PeasExtensionSetClass {
va_list args);
/* Signals */
- void (*extension_added) (PeasExtensionSet *set,
- PeasPluginInfo *info,
- PeasExtension *exten);
- void (*extension_removed) (PeasExtensionSet *set,
- PeasPluginInfo *info,
- PeasExtension *exten);
+ void (*extension_added) (PeasExtensionSet *set,
+ PeasPluginInfo *info,
+ PeasExtension *exten);
+ void (*extension_removed) (PeasExtensionSet *set,
+ PeasPluginInfo *info,
+ PeasExtension *exten);
};
/*
@@ -75,8 +76,8 @@ gboolean peas_extension_set_call_valist (PeasExtensionSet *set,
const gchar *method_name,
va_list args);
-PeasExtensionSet *peas_extension_set_new (PeasEngine *engine,
- GType exten_type);
+PeasExtensionSet *peas_extension_set_new (PeasEngine *engine,
+ GType exten_type);
G_END_DECLS