summaryrefslogtreecommitdiff
path: root/libpeas/peas-plugin-loader-c.c
diff options
context:
space:
mode:
authorGarrett Regier <garrett.regier@riftio.com>2014-10-28 09:37:17 -0700
committerGarrett Regier <garrett.regier@riftio.com>2014-11-04 05:49:43 -0800
commitdcb2247e6b338e093275db8292231bd6152ef8e1 (patch)
treef0fe83af31ef0369cfc95e066b89fd2033f2ad99 /libpeas/peas-plugin-loader-c.c
parent41331aa6c52dbc29af727a6d0db9a43fcdc03c57 (diff)
downloadlibpeas-dcb2247e6b338e093275db8292231bd6152ef8e1.tar.gz
Remove everything the seed plugin loader used
This is no longer needed as the seed plugin loader has been removed. https://bugzilla.gnome.org/show_bug.cgi?id=739306
Diffstat (limited to 'libpeas/peas-plugin-loader-c.c')
-rw-r--r--libpeas/peas-plugin-loader-c.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libpeas/peas-plugin-loader-c.c b/libpeas/peas-plugin-loader-c.c
index a49ab3b..c5a488d 100644
--- a/libpeas/peas-plugin-loader-c.c
+++ b/libpeas/peas-plugin-loader-c.c
@@ -135,11 +135,11 @@ peas_plugin_loader_c_create_extension (PeasPluginLoader *loader,
g_return_val_if_fail (G_IS_OBJECT (instance), NULL);
g_return_val_if_fail (G_TYPE_CHECK_INSTANCE_TYPE (instance, exten_type), NULL);
- /* As we do not instantiate a PeasExtensionWrapper, we have to remember
- * somehow which interface we are instantiating, to make it possible to use
- * the deprecated peas_extension_get_extension_type() method.
+ /* We have to remember which interface we are instantiating
+ * for the deprecated peas_extension_get_extension_type().
*/
- g_object_set_data (instance, "peas-extension-type", GUINT_TO_POINTER (exten_type));
+ g_object_set_data (instance, "peas-extension-type",
+ GSIZE_TO_POINTER (exten_type));
return instance;
}