~ubuntu-branches/ubuntu/natty/evince/natty

« back to all changes in this revision

Viewing changes to shell/ev-sidebar-page.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-08-17 14:09:13 UTC
  • mfrom: (1.1.61 upstream)
  • Revision ID: james.westby@ubuntu.com-20100817140913-bdnfcoup9o2672li
Tags: 2.31.6.1-0ubuntu1
* New upstream release
* debian/control
  - Build-depend on gnome-common and dh-autoreconf
  - Bump build-depends on libglib2.0-dev, libgtk2.0-dev, libpoppler-glib-dev
  - Add build-depend on libcairo2-dev
  - Drop build-depend on libdbus-glib-1-dev
* debian/evince.install:
  - Install gsettings schemas
* debian/rules:
  - Use autoreconf.mk

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
#include "ev-sidebar-page.h"
28
28
 
29
 
EV_DEFINE_INTERFACE (EvSidebarPage, ev_sidebar_page, 0)
 
29
G_DEFINE_INTERFACE (EvSidebarPage, ev_sidebar_page, 0)
30
30
 
31
31
gboolean 
32
32
ev_sidebar_page_support_document (EvSidebarPage *sidebar_page,
33
33
                                  EvDocument    *document)
34
34
{
35
 
        EvSidebarPageIface *iface;
 
35
        EvSidebarPageInterface *iface;
36
36
 
37
37
        g_return_val_if_fail (EV_IS_SIDEBAR_PAGE (sidebar_page), FALSE);
38
38
        g_return_val_if_fail (EV_IS_DOCUMENT (document), FALSE);
48
48
ev_sidebar_page_set_model (EvSidebarPage   *sidebar_page,
49
49
                           EvDocumentModel *model)
50
50
{
51
 
        EvSidebarPageIface *iface;
 
51
        EvSidebarPageInterface *iface;
52
52
 
53
53
        g_return_if_fail (EV_IS_SIDEBAR_PAGE (sidebar_page));
54
54
        g_return_if_fail (EV_IS_DOCUMENT_MODEL (model));
63
63
const gchar *
64
64
ev_sidebar_page_get_label (EvSidebarPage *sidebar_page)
65
65
{
66
 
        EvSidebarPageIface *iface;
 
66
        EvSidebarPageInterface *iface;
67
67
 
68
68
        g_return_val_if_fail (EV_IS_SIDEBAR_PAGE (sidebar_page), NULL);
69
69
 
76
76
 
77
77
 
78
78
static void
79
 
ev_sidebar_page_class_init (EvSidebarPageIface *iface)
 
79
ev_sidebar_page_default_init (EvSidebarPageInterface *iface)
80
80
{
81
81
        static gboolean initialized = FALSE;
82
82