summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGarrett Regier <garrettregier@gmail.com>2014-12-20 09:50:52 -0800
committerGarrett Regier <garrettregier@gmail.com>2014-12-20 09:50:52 -0800
commit18d8d037a6ff98f96fd85f3b091bd1e335beff28 (patch)
treeb84b0f873707045c0d46927923ccbd1a0f6478e3 /tests
parentfed128baa6ead9f117e52892fa7079dc70ec5929 (diff)
downloadlibpeas-18d8d037a6ff98f96fd85f3b091bd1e335beff28.tar.gz
Fix type of TestingLoadablePlugin
It is not a PeasExtensionBase subclass as the .h specifies.
Diffstat (limited to 'tests')
-rw-r--r--tests/plugins/loadable/loadable-plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/loadable/loadable-plugin.c b/tests/plugins/loadable/loadable-plugin.c
index f391a07..1f9d8fb 100644
--- a/tests/plugins/loadable/loadable-plugin.c
+++ b/tests/plugins/loadable/loadable-plugin.c
@@ -42,7 +42,7 @@ static void peas_activatable_iface_init (PeasActivatableInterface *iface);
G_DEFINE_DYNAMIC_TYPE_EXTENDED (TestingLoadablePlugin,
testing_loadable_plugin,
- PEAS_TYPE_EXTENSION_BASE,
+ G_TYPE_OBJECT,
0,
G_IMPLEMENT_INTERFACE_DYNAMIC (PEAS_TYPE_ACTIVATABLE,
peas_activatable_iface_init))