[libpeas] Remove extra semicolon in G_DEFINE_*
- From: Garrett Regier <gregier src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libpeas] Remove extra semicolon in G_DEFINE_*
- Date: Thu, 29 May 2014 22:33:20 +0000 (UTC)
commit 56ecb688daca272b631459cc03dfcec42e314431
Author: Garrett Regier <garrettregier gmail com>
Date: Mon Mar 3 13:30:21 2014 -0800
Remove extra semicolon in G_DEFINE_*
libpeas-gtk/peas-gtk-disable-plugins-dialog.c | 2 +-
libpeas-gtk/peas-gtk-plugin-manager-store.c | 2 +-
libpeas-gtk/peas-gtk-plugin-manager-view.c | 2 +-
libpeas-gtk/peas-gtk-plugin-manager.c | 2 +-
libpeas/peas-engine.c | 2 +-
libpeas/peas-extension-base.c | 2 +-
libpeas/peas-extension-set.c | 2 +-
libpeas/peas-extension-wrapper.c | 2 +-
libpeas/peas-object-module.c | 2 +-
libpeas/peas-plugin-loader-c.c | 2 +-
libpeas/peas-plugin-loader.c | 2 +-
loaders/python/peas-plugin-loader-python.c | 2 +-
loaders/seed/peas-extension-seed.c | 2 +-
loaders/seed/peas-plugin-loader-seed.c | 2 +-
peas-demo/peas-demo-window.c | 2 +-
15 files changed, 15 insertions(+), 15 deletions(-)
---
diff --git a/libpeas-gtk/peas-gtk-disable-plugins-dialog.c b/libpeas-gtk/peas-gtk-disable-plugins-dialog.c
index 311e930..d8afab4 100644
--- a/libpeas-gtk/peas-gtk-disable-plugins-dialog.c
+++ b/libpeas-gtk/peas-gtk-disable-plugins-dialog.c
@@ -49,7 +49,7 @@ static GParamSpec *properties[N_PROPERTIES] = { NULL };
G_DEFINE_TYPE (PeasGtkDisablePluginsDialog,
peas_gtk_disable_plugins_dialog,
- GTK_TYPE_MESSAGE_DIALOG);
+ GTK_TYPE_MESSAGE_DIALOG)
static gint
model_name_sort_func (GtkListStore *store,
diff --git a/libpeas-gtk/peas-gtk-plugin-manager-store.c b/libpeas-gtk/peas-gtk-plugin-manager-store.c
index 7efc51e..cd88c44 100644
--- a/libpeas-gtk/peas-gtk-plugin-manager-store.c
+++ b/libpeas-gtk/peas-gtk-plugin-manager-store.c
@@ -59,7 +59,7 @@ enum {
static GParamSpec *properties[N_PROPERTIES] = { NULL };
-G_DEFINE_TYPE (PeasGtkPluginManagerStore, peas_gtk_plugin_manager_store, GTK_TYPE_LIST_STORE);
+G_DEFINE_TYPE (PeasGtkPluginManagerStore, peas_gtk_plugin_manager_store, GTK_TYPE_LIST_STORE)
static void
update_plugin (PeasGtkPluginManagerStore *store,
diff --git a/libpeas-gtk/peas-gtk-plugin-manager-view.c b/libpeas-gtk/peas-gtk-plugin-manager-view.c
index cf4d702..94f82bd 100644
--- a/libpeas-gtk/peas-gtk-plugin-manager-view.c
+++ b/libpeas-gtk/peas-gtk-plugin-manager-view.c
@@ -79,7 +79,7 @@ enum {
static guint signals[LAST_SIGNAL];
static GParamSpec *properties[N_PROPERTIES] = { NULL };
-G_DEFINE_TYPE (PeasGtkPluginManagerView, peas_gtk_plugin_manager_view, GTK_TYPE_TREE_VIEW);
+G_DEFINE_TYPE (PeasGtkPluginManagerView, peas_gtk_plugin_manager_view, GTK_TYPE_TREE_VIEW)
static void
convert_iter_to_child_iter (PeasGtkPluginManagerView *view,
diff --git a/libpeas-gtk/peas-gtk-plugin-manager.c b/libpeas-gtk/peas-gtk-plugin-manager.c
index fa9d585..41173cd 100644
--- a/libpeas-gtk/peas-gtk-plugin-manager.c
+++ b/libpeas-gtk/peas-gtk-plugin-manager.c
@@ -79,7 +79,7 @@ enum {
static GParamSpec *properties[N_PROPERTIES] = { NULL };
-G_DEFINE_TYPE (PeasGtkPluginManager, peas_gtk_plugin_manager, GTK_TYPE_BOX);
+G_DEFINE_TYPE (PeasGtkPluginManager, peas_gtk_plugin_manager, GTK_TYPE_BOX)
static gboolean
plugin_is_configurable (PeasGtkPluginManager *pm,
diff --git a/libpeas/peas-engine.c b/libpeas/peas-engine.c
index 1a5de04..9d66f08 100644
--- a/libpeas/peas-engine.c
+++ b/libpeas/peas-engine.c
@@ -57,7 +57,7 @@
* </listitem>
* </itemizedlist>
**/
-G_DEFINE_TYPE (PeasEngine, peas_engine, G_TYPE_OBJECT);
+G_DEFINE_TYPE (PeasEngine, peas_engine, G_TYPE_OBJECT)
static PeasEngine *default_engine = NULL;
static gboolean shutdown = FALSE;
diff --git a/libpeas/peas-extension-base.c b/libpeas/peas-extension-base.c
index 882862b..27a61f9 100644
--- a/libpeas/peas-extension-base.c
+++ b/libpeas/peas-extension-base.c
@@ -42,7 +42,7 @@
* the same purpose.
**/
-G_DEFINE_ABSTRACT_TYPE (PeasExtensionBase, peas_extension_base, G_TYPE_OBJECT);
+G_DEFINE_ABSTRACT_TYPE (PeasExtensionBase, peas_extension_base, G_TYPE_OBJECT)
struct _PeasExtensionBasePrivate {
PeasPluginInfo *info;
diff --git a/libpeas/peas-extension-set.c b/libpeas/peas-extension-set.c
index 2ac13a6..6cd7b2c 100644
--- a/libpeas/peas-extension-set.c
+++ b/libpeas/peas-extension-set.c
@@ -86,7 +86,7 @@
* ]|
**/
-G_DEFINE_TYPE (PeasExtensionSet, peas_extension_set, G_TYPE_OBJECT);
+G_DEFINE_TYPE (PeasExtensionSet, peas_extension_set, G_TYPE_OBJECT)
struct _PeasExtensionSetPrivate {
PeasEngine *engine;
diff --git a/libpeas/peas-extension-wrapper.c b/libpeas/peas-extension-wrapper.c
index 5f607e2..c9760ad 100644
--- a/libpeas/peas-extension-wrapper.c
+++ b/libpeas/peas-extension-wrapper.c
@@ -26,7 +26,7 @@
#include "peas-extension-wrapper.h"
#include "peas-introspection.h"
-G_DEFINE_ABSTRACT_TYPE (PeasExtensionWrapper, peas_extension_wrapper, G_TYPE_OBJECT);
+G_DEFINE_ABSTRACT_TYPE (PeasExtensionWrapper, peas_extension_wrapper, G_TYPE_OBJECT)
static void
peas_extension_wrapper_init (PeasExtensionWrapper *exten)
diff --git a/libpeas/peas-object-module.c b/libpeas/peas-object-module.c
index 26a5a92..c74152e 100644
--- a/libpeas/peas-object-module.c
+++ b/libpeas/peas-object-module.c
@@ -42,7 +42,7 @@
* function.
**/
-G_DEFINE_TYPE (PeasObjectModule, peas_object_module, G_TYPE_TYPE_MODULE);
+G_DEFINE_TYPE (PeasObjectModule, peas_object_module, G_TYPE_TYPE_MODULE)
typedef void (*PeasObjectModuleRegisterFunc) (PeasObjectModule *);
diff --git a/libpeas/peas-plugin-loader-c.c b/libpeas/peas-plugin-loader-c.c
index a82971f..a49ab3b 100644
--- a/libpeas/peas-plugin-loader-c.c
+++ b/libpeas/peas-plugin-loader-c.c
@@ -34,7 +34,7 @@ struct _PeasPluginLoaderCPrivate {
GHashTable *loaded_plugins;
};
-G_DEFINE_TYPE (PeasPluginLoaderC, peas_plugin_loader_c, PEAS_TYPE_PLUGIN_LOADER);
+G_DEFINE_TYPE (PeasPluginLoaderC, peas_plugin_loader_c, PEAS_TYPE_PLUGIN_LOADER)
static gboolean
peas_plugin_loader_c_load (PeasPluginLoader *loader,
diff --git a/libpeas/peas-plugin-loader.c b/libpeas/peas-plugin-loader.c
index bcb47d0..4d62ef3 100644
--- a/libpeas/peas-plugin-loader.c
+++ b/libpeas/peas-plugin-loader.c
@@ -25,7 +25,7 @@
#include "peas-plugin-loader.h"
-G_DEFINE_ABSTRACT_TYPE (PeasPluginLoader, peas_plugin_loader, G_TYPE_OBJECT);
+G_DEFINE_ABSTRACT_TYPE (PeasPluginLoader, peas_plugin_loader, G_TYPE_OBJECT)
static void
peas_plugin_loader_finalize (GObject *object)
diff --git a/loaders/python/peas-plugin-loader-python.c b/loaders/python/peas-plugin-loader-python.c
index c990095..778af3f 100644
--- a/loaders/python/peas-plugin-loader-python.c
+++ b/loaders/python/peas-plugin-loader-python.c
@@ -55,7 +55,7 @@ typedef struct {
static gboolean peas_plugin_loader_python_add_module_path (PeasPluginLoaderPython *pyloader,
const gchar *module_path);
-G_DEFINE_TYPE (PeasPluginLoaderPython, peas_plugin_loader_python, PEAS_TYPE_PLUGIN_LOADER);
+G_DEFINE_TYPE (PeasPluginLoaderPython, peas_plugin_loader_python, PEAS_TYPE_PLUGIN_LOADER)
G_MODULE_EXPORT void
peas_register_types (PeasObjectModule *module)
diff --git a/loaders/seed/peas-extension-seed.c b/loaders/seed/peas-extension-seed.c
index 8e0b900..1930351 100644
--- a/loaders/seed/peas-extension-seed.c
+++ b/loaders/seed/peas-extension-seed.c
@@ -28,7 +28,7 @@
#include <libpeas/peas-extension-subclasses.h>
#include <girepository.h>
-G_DEFINE_TYPE (PeasExtensionSeed, peas_extension_seed, PEAS_TYPE_EXTENSION_WRAPPER);
+G_DEFINE_TYPE (PeasExtensionSeed, peas_extension_seed, PEAS_TYPE_EXTENSION_WRAPPER)
typedef struct {
GITypeInfo type_info;
diff --git a/loaders/seed/peas-plugin-loader-seed.c b/loaders/seed/peas-plugin-loader-seed.c
index e1ecd8f..44fc8c2 100644
--- a/loaders/seed/peas-plugin-loader-seed.c
+++ b/loaders/seed/peas-plugin-loader-seed.c
@@ -31,7 +31,7 @@
#include "peas-plugin-loader-seed.h"
#include "peas-extension-seed.h"
-G_DEFINE_TYPE (PeasPluginLoaderSeed, peas_plugin_loader_seed, PEAS_TYPE_PLUGIN_LOADER);
+G_DEFINE_TYPE (PeasPluginLoaderSeed, peas_plugin_loader_seed, PEAS_TYPE_PLUGIN_LOADER)
typedef struct {
SeedContext context;
diff --git a/peas-demo/peas-demo-window.c b/peas-demo/peas-demo-window.c
index 27777d3..e84416f 100644
--- a/peas-demo/peas-demo-window.c
+++ b/peas-demo/peas-demo-window.c
@@ -25,7 +25,7 @@
#include "peas-demo-window.h"
-G_DEFINE_TYPE (DemoWindow, demo_window, GTK_TYPE_WINDOW);
+G_DEFINE_TYPE (DemoWindow, demo_window, GTK_TYPE_WINDOW)
static void
on_extension_added (PeasExtensionSet *set,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]