aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-component-registry.h
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-11-20 03:06:46 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-11-20 03:06:46 +0800
commit0fede2ff4a1f94b0aab8d8de1988a53ba6e3ba94 (patch)
tree613e724966575f713bb9337c0b528091489ce88a /shell/e-component-registry.h
parent75d7ec9957a7dde363ce353575fb7ddc4826eaff (diff)
downloadgsoc2013-evolution-0fede2ff4a1f94b0aab8d8de1988a53ba6e3ba94.tar
gsoc2013-evolution-0fede2ff4a1f94b0aab8d8de1988a53ba6e3ba94.tar.gz
gsoc2013-evolution-0fede2ff4a1f94b0aab8d8de1988a53ba6e3ba94.tar.bz2
gsoc2013-evolution-0fede2ff4a1f94b0aab8d8de1988a53ba6e3ba94.tar.lz
gsoc2013-evolution-0fede2ff4a1f94b0aab8d8de1988a53ba6e3ba94.tar.xz
gsoc2013-evolution-0fede2ff4a1f94b0aab8d8de1988a53ba6e3ba94.tar.zst
gsoc2013-evolution-0fede2ff4a1f94b0aab8d8de1988a53ba6e3ba94.zip
Free ->uri_schemas. (set_schemas): New function to get the list of URI
* e-component-registry.c (component_info_free): Free ->uri_schemas. (set_schemas): New function to get the list of URI schemas given a component's ServerInfo. (query_components): Call it. * e-component-registry.h (struct _EComponentInfo): Add "uri_schemas" member. * Evolution-Component.idl (Component.handleURI): New method. svn path=/trunk/; revision=23447
Diffstat (limited to 'shell/e-component-registry.h')
-rw-r--r--shell/e-component-registry.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/shell/e-component-registry.h b/shell/e-component-registry.h
index 584d7aa209..865bd3fcd2 100644
--- a/shell/e-component-registry.h
+++ b/shell/e-component-registry.h
@@ -70,6 +70,9 @@ struct _EComponentInfo {
GdkPixbuf *button_icon;
int sort_order;
+
+ /* List of URI schemas that this component supports. */
+ GSList *uri_schemas; /* <char *> */
};
typedef struct _EComponentInfo EComponentInfo;