From 54fe7e3b2affbe5fd962460ec5ba6942a77b747c Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Tue, 10 Nov 2009 10:45:06 -0500 Subject: Fix EPluginLib callback signatures. Dynamically loaded library plugins do not need to know about EPluginLib specifically. Passing them an EPlugin pointer is sufficient. --- modules/plugin-lib/e-plugin-lib.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/plugin-lib/e-plugin-lib.h') diff --git a/modules/plugin-lib/e-plugin-lib.h b/modules/plugin-lib/e-plugin-lib.h index b485d9625e..6ca7d697a9 100644 --- a/modules/plugin-lib/e-plugin-lib.h +++ b/modules/plugin-lib/e-plugin-lib.h @@ -50,14 +50,14 @@ typedef struct _EPluginLib EPluginLib; typedef struct _EPluginLibClass EPluginLibClass; /* The callback signature used for epluginlib methods */ -typedef gpointer (*EPluginLibFunc) (EPluginLib *ep, gpointer data); +typedef gpointer (*EPluginLibFunc) (EPlugin *ep, gpointer data); /* The setup method, this will be called when the plugin is * initialized. In the future it may also be called when the plugin * is disabled. */ -typedef gint (*EPluginLibEnableFunc) (EPluginLib *ep, gint enable); +typedef gint (*EPluginLibEnableFunc) (EPlugin *ep, gint enable); -typedef gpointer (*EPluginLibGetConfigureWidgetFunc) (EPluginLib *ep); +typedef gpointer (*EPluginLibGetConfigureWidgetFunc) (EPlugin *ep); /** * struct _EPluginLib - -- cgit v1.2.3