diff options
author | Ted Gould <ted@canonical.com> | 2009-11-03 16:38:05 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-03 16:38:05 -0600 |
commit | 258f461b7bcd5d3c811a41fe6a7ad4ffae73f4be (patch) | |
tree | 0f0eafe9f5b6349f13c5f563600a8aed02159aa3 | |
parent | 78868a0db98b9f2dc9a52b5f104f6f76a5dae549 (diff) | |
download | libayatana-indicator-258f461b7bcd5d3c811a41fe6a7ad4ffae73f4be.tar.gz libayatana-indicator-258f461b7bcd5d3c811a41fe6a7ad4ffae73f4be.tar.bz2 libayatana-indicator-258f461b7bcd5d3c811a41fe6a7ad4ffae73f4be.zip |
Creating the actual backing function for indicator_object_get_entries.
-rw-r--r-- | libindicator/indicator-object.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c index 8c683da..db4b819 100644 --- a/libindicator/indicator-object.c +++ b/libindicator/indicator-object.c @@ -256,3 +256,29 @@ get_entries_default (IndicatorObject * io) return g_list_append(NULL, &(priv->entry)); } + +/** + indicator_object_get_entires: + @io: #IndicatorObject to query + + This function looks on the class for the object and calls + it's #IndicatorObjectClass::get_entries function. The + list should be owned by the caller, but the individual + enteries should not be. + + Return value: A list if #IndicatorObjectEntry structures or + NULL if there is an error. +*/ +GList * +indicator_object_get_entries (IndicatorObject * io) +{ + g_return_val_if_fail(INDICATOR_IS_OBJECT(io), NULL); + IndicatorObjectClass * class = INDICATOR_OBJECT_GET_CLASS(io); + + if (class->get_entries) { + return class->get_entries(io); + } + + g_error("No get_entries function on object. It must have been deleted?!?!"); + return NULL; +} |