~ubuntu-branches/ubuntu/quantal/evince/quantal

« back to all changes in this revision

Viewing changes to libdocument/ev-init.c

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-06-07 16:47:24 UTC
  • mfrom: (1.1.76)
  • Revision ID: package-import@ubuntu.com-20120607164724-fg32ta2uv3lrkwnk
Tags: 3.5.2-0ubuntu1
* New upstream release
* debian/control:
  - Bump build-depends on libpoppler-glib-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#endif
27
27
 
28
28
#include "ev-init.h"
29
 
#include "ev-backends-manager.h"
 
29
#include "ev-document-factory.h"
30
30
#include "ev-debug.h"
31
31
#include "ev-file-helpers.h"
32
32
 
116
116
 
117
117
        _ev_debug_init ();
118
118
        _ev_file_helpers_init ();
119
 
        have_backends = _ev_backends_manager_init ();
 
119
        have_backends = _ev_document_factory_init ();
120
120
 
121
121
        return have_backends;
122
122
}
139
139
                g_free(locale_dir);
140
140
#endif
141
141
 
142
 
        _ev_backends_manager_shutdown ();
 
142
        _ev_document_factory_shutdown ();
143
143
        _ev_file_helpers_shutdown ();
144
144
        _ev_debug_shutdown ();
145
145
}