gplugin/gplugin

Move GPluginPluginInfo from GInitiallyUnowned to GObject
bugfix/valgrind-catchup
2020-03-09, Gary Kramlich
80bb20cbb820
Parents 43d6a4c53957
Children cb926f728b2e
Move GPluginPluginInfo from GInitiallyUnowned to GObject
--- a/gplugin/gplugin-plugin-info.c Mon Mar 09 21:38:03 2020 -0500
+++ b/gplugin/gplugin-plugin-info.c Mon Mar 09 23:18:47 2020 -0500
@@ -109,7 +109,7 @@
G_DEFINE_TYPE_WITH_PRIVATE(
GPluginPluginInfo,
gplugin_plugin_info,
- G_TYPE_INITIALLY_UNOWNED)
+ G_TYPE_OBJECT)
/******************************************************************************
* Private API
--- a/gplugin/gplugin-plugin-info.h Mon Mar 09 21:38:03 2020 -0500
+++ b/gplugin/gplugin-plugin-info.h Mon Mar 09 23:18:47 2020 -0500
@@ -33,14 +33,14 @@
gplugin_plugin_info,
GPLUGIN,
PLUGIN_INFO,
- GInitiallyUnowned)
+ GObject)
#include <gplugin/gplugin-loader.h>
#include <gplugin/gplugin-version.h>
struct _GPluginPluginInfoClass {
/*< private >*/
- GInitiallyUnownedClass gparent;
+ GObjectClass parent;
gpointer reserved[4];
};