From 9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 14 Nov 2007 22:04:21 +0000 Subject: ** Remove trailing whitespace from source code. 2007-11-14 Matthew Barnes ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537 --- e-util/e-plugin.c | 114 +++++++++++++++++++++++++++--------------------------- 1 file changed, 57 insertions(+), 57 deletions(-) (limited to 'e-util/e-plugin.c') diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c index bdfe12c9b1..054298a942 100644 --- a/e-util/e-plugin.c +++ b/e-util/e-plugin.c @@ -270,17 +270,17 @@ ep_class_init(EPluginClass *klass) /** * e_plugin_get_type: - * + * * Standard GObject type function. This is only an abstract class, so * you can only use this to subclass EPlugin. - * + * * Return value: The type. **/ GType e_plugin_get_type(void) { static GType type = 0; - + if (!type) { char *path, *col, *p; @@ -300,7 +300,7 @@ e_plugin_get_type(void) path = g_build_filename(g_get_home_dir(), ".eplugins", NULL); } - + p = path; while ((col = strchr(p, G_SEARCHPATH_SEPARATOR))) { *col++ = 0; @@ -310,7 +310,7 @@ e_plugin_get_type(void) e_plugin_add_load_path(p); g_free(path); } - + return type; } @@ -437,7 +437,7 @@ ep_load_pending(EPlugin *ep, EPluginHookClass *type) if (class) { if (strcmp(class, type->id) == 0) { hook = g_object_new(G_OBJECT_CLASS_TYPE(type), NULL); - + /* Don't bother loading hooks for plugins that are not anyway enabled */ if (ep->enabled) { res = type->construct(hook, ep, node); @@ -470,7 +470,7 @@ ep_load_pending(EPlugin *ep, EPluginHookClass *type) /** * e_plugin_add_load_path: * @path: The path to add to search for plugins. - * + * * Add a path to be searched when e_plugin_load_plugins() is called. * By default the system plugin directory and ~/.eplugins is used as * the search path unless overriden by the environmental variable @@ -489,10 +489,10 @@ e_plugin_add_load_path(const char *path) /** * e_plugin_load_plugins: - * + * * Scan the search path, looking for plugin definitions, and load them * into memory. - * + * * Return value: Returns -1 if an error occurred. **/ int @@ -537,7 +537,7 @@ e_plugin_load_plugins(void) /** * e_plugin_register_type: * @type: The GObject type of the plugin loader. - * + * * Register a new plugin type with the plugin system. Each type must * subclass EPlugin and must override the type member of the * EPluginClass with a unique name. @@ -608,10 +608,10 @@ ep_list_plugin(void *key, void *val, void *dat) /** * e_plugin_list_plugins: List all plugins. - * + * * Static class method to retrieve a list of all current plugins. They * are listed in no particular order. - * + * * Return value: A GSList of all plugins, they must be * g_object_unref'd and the list freed. **/ @@ -631,9 +631,9 @@ e_plugin_list_plugins(void) * @ep: An EPlugin derived object. * @root: The XML root node of the sub-tree containing the plugin * definition. - * + * * Helper to invoke the construct virtual method. - * + * * Return value: The return from the construct virtual method. **/ int @@ -644,15 +644,15 @@ e_plugin_construct(EPlugin *ep, xmlNodePtr root) /** * e_plugin_invoke: - * @ep: + * @ep: * @name: The name of the function to invoke. The format of this name * will depend on the EPlugin type and its language conventions. * @data: The argument to the function. Its actual type depends on * the hook on which the function resides. It is up to the called * function to get this right. - * + * * Helper to invoke the invoke virtual method. - * + * * Return value: The return of the plugin invocation. **/ void * @@ -668,9 +668,9 @@ e_plugin_invoke(EPlugin *ep, const char *name, void *data) /** * e_plugin_enable: - * @ep: - * @state: - * + * @ep: + * @state: + * * Set the enable state of a plugin. * * THIS IS NOT FULLY IMPLEMENTED YET @@ -686,8 +686,8 @@ e_plugin_enable(EPlugin *ep, int state) /** * e_plugin_configure: -* @ep: -* +* @ep: +* * **/ @@ -703,11 +703,11 @@ e_plugin_configure (EPlugin *ep) * e_plugin_xml_prop: * @node: An XML node. * @id: The name of the property to retrieve. - * + * * A static helper function to look up a property on an XML node, and * ensure it is allocated in GLib system memory. If GLib isn't using * the system malloc then it must copy the property value. - * + * * Return value: The property, allocated in GLib memory, or NULL if no * such property exists. **/ @@ -732,10 +732,10 @@ e_plugin_xml_prop(xmlNodePtr node, const char *id) * @node: An XML node. * @id: The name of the property to retrieve. * @domain: The translation domain for this string. - * + * * A static helper function to look up a property on an XML node, and * translate it based on @domain. - * + * * Return value: The property, allocated in GLib memory, or NULL if no * such property exists. **/ @@ -760,11 +760,11 @@ e_plugin_xml_prop_domain(xmlNodePtr node, const char *id, const char *domain) * @id: The name of the property to retrieve. * @def: A default value if the property doesn't exist. Can be used * to determine if the property isn't set. - * + * * A static helper function to look up a property on an XML node as an * integer. If the property doesn't exist, then @def is returned as a * default value instead. - * + * * Return value: The value if set, or @def if not. **/ int @@ -780,12 +780,12 @@ e_plugin_xml_int(xmlNodePtr node, const char *id, int def) /** * e_plugin_xml_content: - * @node: - * + * @node: + * * A static helper function to retrieve the entire textual content of * an XML node, and ensure it is allocated in GLib system memory. If * GLib isn't using the system malloc them it must copy the content. - * + * * Return value: The node content, allocated in GLib memory. **/ char * @@ -806,13 +806,13 @@ e_plugin_xml_content(xmlNodePtr node) /** * e_plugin_xml_content_domain: - * @node: + * @node: * @domain: - * + * * A static helper function to retrieve the entire textual content of * an XML node, and ensure it is allocated in GLib system memory. If * GLib isn't using the system malloc them it must copy the content. - * + * * Return value: The node content, allocated in GLib memory. **/ char * @@ -852,7 +852,7 @@ epl_loadmodule(EPlugin *ep) { if (epl->module == NULL) { EPluginLibEnableFunc enable; - + if ((epl->module = g_module_open(epl->location, 0)) == NULL) { g_warning("can't load plugin '%s'", g_module_error()); return -1; @@ -1015,18 +1015,18 @@ epl_class_init(EPluginClass *klass) /** * e_plugin_lib_get_type: - * + * * Standard GObject function to retrieve the EPluginLib type. Use to * register the type with the plugin system if you want to use shared * library plugins. - * + * * Return value: The EPluginLib type. **/ GType e_plugin_lib_get_type(void) { static GType type = 0; - + if (!type) { static const GTypeInfo info = { sizeof(EPluginLibClass), NULL, NULL, (GClassInitFunc) epl_class_init, NULL, NULL, @@ -1036,7 +1036,7 @@ e_plugin_lib_get_type(void) epl_parent_class = g_type_class_ref(e_plugin_get_type()); type = g_type_register_static(e_plugin_get_type(), "EPluginLib", &info, 0); } - + return type; } @@ -1072,17 +1072,17 @@ eph_class_init(EPluginHookClass *klass) /** * e_plugin_hook_get_type: - * + * * Standard GObject function to retrieve the EPluginHook type. Since * EPluginHook is an abstract class, this is only used to subclass it. - * + * * Return value: The EPluginHook type. **/ GType e_plugin_hook_get_type(void) { static GType type = 0; - + if (!type) { static const GTypeInfo info = { sizeof(EPluginHookClass), NULL, NULL, (GClassInitFunc) eph_class_init, NULL, NULL, @@ -1092,15 +1092,15 @@ e_plugin_hook_get_type(void) eph_parent_class = g_type_class_ref(G_TYPE_OBJECT); type = g_type_register_static(G_TYPE_OBJECT, "EPluginHook", &info, 0); } - + return type; } /** * e_plugin_hook_enable: Set hook enabled state. - * @eph: - * @state: - * + * @eph: + * @state: + * * Set the enabled state of the plugin hook. This is called by the * plugin code. * @@ -1114,8 +1114,8 @@ e_plugin_hook_enable(EPluginHook *eph, int state) /** * e_plugin_hook_register_type: - * @type: - * + * @type: + * * Register a new plugin hook type with the plugin system. Each type * must subclass EPluginHook and must override the id member of the * EPluginHookClass with a unique identification string. @@ -1195,7 +1195,7 @@ e_plugin_hook_register_type(GType type) * @map: A zero-fill terminated array of EPluginHookTargeKeys used to * map a string with a bit value. * @prop: The property name. - * + * * This is a static helper function which looks up a property @prop on * the XML node @root, and then uses the @map table to convert it into * a bitmask. The property value is a comma separated list of @@ -1241,17 +1241,17 @@ e_plugin_hook_mask(xmlNodePtr root, const struct _EPluginHookTargetKey *map, con /** * e_plugin_hook_id: - * @root: - * @map: - * @prop: - * + * @root: + * @map: + * @prop: + * * This is a static helper function which looks up a property @prop on * the XML node @root, and then uses the @map table to convert it into * an integer. * * This is used as a helper wherever you need to represent an * enumerated value in the XML. - * + * * Return value: If the @prop value is in @map, then the corresponding * integer value, if not, then ~0. **/ @@ -1352,7 +1352,7 @@ epth_class_init(EPluginHookClass *klass) /** * e_plugin_type_hook_get_type: - * + * * Get the type for the plugin plugin hook. * * Return value: The type of the plugin type hook. @@ -1361,7 +1361,7 @@ GType e_plugin_type_hook_get_type(void) { static GType type = 0; - + if (!type) { static const GTypeInfo info = { sizeof(EPluginTypeHookClass), NULL, NULL, (GClassInitFunc) epth_class_init, NULL, NULL, @@ -1371,6 +1371,6 @@ e_plugin_type_hook_get_type(void) epth_parent_class = g_type_class_ref(e_plugin_hook_get_type()); type = g_type_register_static(e_plugin_hook_get_type(), "EPluginTypeHook", &info, 0); } - + return type; } -- cgit v1.2.3