diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2001-01-24 15:31:40 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-01-24 15:31:40 +0800 |
commit | dea4c72b4e46801849bd721f058ec7cdcb121885 (patch) | |
tree | cdc24b6388c2328c0e037b9d9bf12e939e169e81 /widgets | |
parent | 6b3050b79ef1c987e854786bfef7cee614fee2a4 (diff) | |
download | gsoc2013-evolution-dea4c72b4e46801849bd721f058ec7cdcb121885.tar gsoc2013-evolution-dea4c72b4e46801849bd721f058ec7cdcb121885.tar.gz gsoc2013-evolution-dea4c72b4e46801849bd721f058ec7cdcb121885.tar.bz2 gsoc2013-evolution-dea4c72b4e46801849bd721f058ec7cdcb121885.tar.lz gsoc2013-evolution-dea4c72b4e46801849bd721f058ec7cdcb121885.tar.xz gsoc2013-evolution-dea4c72b4e46801849bd721f058ec7cdcb121885.tar.zst gsoc2013-evolution-dea4c72b4e46801849bd721f058ec7cdcb121885.zip |
Actually implement this function.
2001-01-24 Christopher James Lahey <clahey@helixcode.com>
* gal-view-collection.c (gal_view_collection_get_view_item):
Actually implement this function.
svn path=/trunk/; revision=7774
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/menus/gal-view-collection.c | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/widgets/menus/gal-view-collection.c b/widgets/menus/gal-view-collection.c index db314f4d5f..fb5192f0c7 100644 --- a/widgets/menus/gal-view-collection.c +++ b/widgets/menus/gal-view-collection.c @@ -373,8 +373,6 @@ gal_view_collection_get_count (GalViewCollection *collection) * @collection: The view collection to query * @n: The view to get. * - * Calculates the number of views in the given collection. - * * Returns: The nth view in the collection */ GalView * @@ -387,6 +385,23 @@ gal_view_collection_get_view (GalViewCollection *collection, return collection->view_data[n]->view; } +/** + * gal_view_collection_get_view_item + * @collection: The view collection to query + * @n: The view item to get. + * + * Returns: The nth view item in the collection + */ +GalViewCollectionItem * +gal_view_collection_get_view_item (GalViewCollection *collection, + int n) +{ + g_return_val_if_fail(n < collection->view_count, NULL); + g_return_val_if_fail(n >= 0, NULL); + + return collection->view_data[n]; +} + static char * gal_view_generate_string (GalViewCollection *collection, GalView *view, |