summaryrefslogtreecommitdiff
path: root/src/eog-thumb-view.h
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@gnome.org>2008-05-19 05:20:04 +0000
committerClaudio Saavedra <csaavedra@src.gnome.org>2008-05-19 05:20:04 +0000
commit8acb4fb3239fcfe12641a11accc236fb6992c29b (patch)
treeead0b4feb58602574ade7bb0f20769d89e2a16c2 /src/eog-thumb-view.h
parent1980d19a05696e672e7450c80e2052c4ea523bf4 (diff)
downloadeog-8acb4fb3239fcfe12641a11accc236fb6992c29b.tar.gz
Make all the function prototypes match function declarations.
2008-05-19 Claudio Saavedra <csaavedra@gnome.org> * src/eog-thumb-view.h: Make all the function prototypes match function declarations. svn path=/trunk/; revision=4573
Diffstat (limited to 'src/eog-thumb-view.h')
-rw-r--r--src/eog-thumb-view.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/eog-thumb-view.h b/src/eog-thumb-view.h
index 99d16349..8f688d77 100644
--- a/src/eog-thumb-view.h
+++ b/src/eog-thumb-view.h
@@ -59,26 +59,26 @@ GType eog_thumb_view_get_type (void) G_GNUC_CONST;
GtkWidget *eog_thumb_view_new (void);
-void eog_thumb_view_set_model (EogThumbView *view,
+void eog_thumb_view_set_model (EogThumbView *thumbview,
EogListStore *store);
-void eog_thumb_view_set_item_height (EogThumbView *view,
+void eog_thumb_view_set_item_height (EogThumbView *thumbview,
gint height);
-guint eog_thumb_view_get_n_selected (EogThumbView *view);
+guint eog_thumb_view_get_n_selected (EogThumbView *thumbview);
-EogImage *eog_thumb_view_get_first_selected_image (EogThumbView *view);
+EogImage *eog_thumb_view_get_first_selected_image (EogThumbView *thumbview);
-GList *eog_thumb_view_get_selected_images (EogThumbView *view);
+GList *eog_thumb_view_get_selected_images (EogThumbView *thumbview);
-void eog_thumb_view_select_single (EogThumbView *view,
+void eog_thumb_view_select_single (EogThumbView *thumbview,
EogThumbViewSelectionChange change);
-void eog_thumb_view_set_current_image (EogThumbView *view,
+void eog_thumb_view_set_current_image (EogThumbView *thumbview,
EogImage *image,
gboolean deselect_other);
-void eog_thumb_view_set_thumbnail_popup (EogThumbView *view,
+void eog_thumb_view_set_thumbnail_popup (EogThumbView *thumbview,
GtkMenu *menu);
G_END_DECLS