]> www.fi.muni.cz Git - evince.git/blobdiff - libview/ev-view-presentation.c
presentation: Make next/previous methods public
[evince.git] / libview / ev-view-presentation.c
index a4498f4c20d5b948592ff4d5a34691e175eb5e22..3454d778fc4a51d163f3d0476a37a08f2dff081e 100644 (file)
@@ -104,8 +104,6 @@ struct _EvViewPresentationClass
 
 static guint signals[N_SIGNALS] = { 0 };
 
-static void ev_view_presentation_next_page               (EvViewPresentation *pview);
-static void ev_view_presentation_previous_page           (EvViewPresentation *pview);
 static void ev_view_presentation_set_cursor_for_location (EvViewPresentation *pview,
                                                          gdouble             x,
                                                          gdouble             y);
@@ -485,7 +483,7 @@ ev_view_presentation_update_current_page (EvViewPresentation *pview,
                gtk_widget_queue_draw (GTK_WIDGET (pview));
 }
 
-static void
+void
 ev_view_presentation_next_page (EvViewPresentation *pview)
 {
        guint n_pages;
@@ -510,7 +508,7 @@ ev_view_presentation_next_page (EvViewPresentation *pview)
                ev_view_presentation_update_current_page (pview, new_page);
 }
 
-static void
+void
 ev_view_presentation_previous_page (EvViewPresentation *pview)
 {
        gint new_page = 0;