[goffice] * Extensions for XLL support in Gnumeric. [#597849]
- From: Jody Goldberg <jody src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [goffice] * Extensions for XLL support in Gnumeric. [#597849]
- Date: Sat, 10 Oct 2009 13:08:29 +0000 (UTC)
commit 6373472afb06b903768db82d91c97100327967fd
Author: Jody Goldberg <jody gnome org>
Date: Sat Oct 10 09:08:06 2009 -0400
* Extensions for XLL support in Gnumeric. [#597849]
ChangeLog | 5 +++++
NEWS | 3 +++
goffice/app/go-plugin.c | 17 +++++++++++++++--
3 files changed, 23 insertions(+), 2 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 93fbc86..ac7a7c0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-10-10 Jody Goldberg <jody gnome org>
+
+ From peter jaeckel gmail com:
+ * goffice/app/go-plugin.c (go_plugin_get_loader) : new accessor. [#597849]
+
2009-10-10 Jean Brefort <jean brefort normalesup org>
* docs/reference/goffice-0.8-sections.txt: now includes all relevant
diff --git a/NEWS b/NEWS
index 96fc124..ce17e78 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,9 @@ Jean:
* Fix custom point marker in scatter plots. [#596585]
* Fixed various issues related to image filling.
+Peter Jaeckel:
+ * Extensions for XLL support in Gnumeric. [#597849]
+
--------------------------------------------------------------------------
goffice 0.7.13:
diff --git a/goffice/app/go-plugin.c b/goffice/app/go-plugin.c
index 6f3219e..1ca26e6 100644
--- a/goffice/app/go-plugin.c
+++ b/goffice/app/go-plugin.c
@@ -1158,7 +1158,7 @@ go_plugin_load_base (GOPlugin *plugin, GOErrorInfo **ret_error)
* @service : Plugin service
* @ret_error : Pointer used to report errors
*
- * Loads base part of the plugin if is not loaded and then loads given
+ * Loads base part of the plugin if it is not loaded and then loads given
* plugin service (prepares necessary part of the plugin for direct use).
* This function is intended for use by GOPluginService objects.
*/
@@ -1268,8 +1268,21 @@ go_plugin_get_services (GOPlugin *plugin)
return plugin->services;
}
+/**
+ * go_plugin_get_loader:
+ * @plugin : #GOPlugin
+ *
+ * Returns: The loader.
+ **/
+GOPluginLoader *
+go_plugin_get_loader (GOPlugin *plugin)
+{
+ g_return_val_if_fail (GO_IS_PLUGIN (plugin), NULL);
+ return plugin->loader;
+}
+
/*
- * May return NULL without errors (is XML file doesn't exist)
+ * May return NULL without errors (if XML file doesn't exist)
*/
static GOPlugin *
go_plugin_read_for_dir (gchar const *dir_name, GOErrorInfo **ret_error)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]