]> www.fi.muni.cz Git - evince.git/commitdiff
Use EV_BACKEND_IMPLEMENT_INTERFACE instead of G_IMPLEMENT_INTERFACE.
authorCarlos Garcia Campos <carlosgc@gnome.org>
Sun, 28 Sep 2008 16:55:26 +0000 (16:55 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Sun, 28 Sep 2008 16:55:26 +0000 (16:55 +0000)
2008-09-28  Carlos Garcia Campos  <carlosgc@gnome.org>

* backend/dvi/dvi-document.c:

Use EV_BACKEND_IMPLEMENT_INTERFACE instead of
G_IMPLEMENT_INTERFACE.

svn path=/trunk/; revision=3208

ChangeLog
backend/dvi/dvi-document.c

index 4589b98d02d28eebc99c3206055aed44603c6294..5d2cd88924493c44a23fcf0096d19807ac598377 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-09-28  Carlos Garcia Campos  <carlosgc@gnome.org>
+
+       * backend/dvi/dvi-document.c:
+
+       Use EV_BACKEND_IMPLEMENT_INTERFACE instead of
+       G_IMPLEMENT_INTERFACE.
+       
 2008-09-26  Carlos Garcia Campos  <carlosgc@gnome.org>
 
        * shell/ev-pixbuf-cache.c: (copy_job_to_job_info):
index 876d577092b026153984732fb65f25a0e6094108..41274f9fc6471cbd91525e53701cecc07ea653b3 100644 (file)
@@ -73,8 +73,8 @@ static void dvi_document_do_color_special               (DviContext
 
 EV_BACKEND_REGISTER_WITH_CODE (DviDocument, dvi_document,
      {
-      G_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_THUMBNAILS, dvi_document_document_thumbnails_iface_init);
-      G_IMPLEMENT_INTERFACE (EV_TYPE_FILE_EXPORTER, dvi_document_file_exporter_iface_init);
+      EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_THUMBNAILS, dvi_document_document_thumbnails_iface_init);
+      EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_FILE_EXPORTER, dvi_document_file_exporter_iface_init);
      });
 
 static gboolean
@@ -98,7 +98,7 @@ dvi_document_load (EvDocument  *document,
        g_mutex_lock (dvi_context_mutex);
        if (dvi_document->context)
                mdvi_destroy_context (dvi_document->context);
-       
+
        dvi_document->context = mdvi_init_context(dvi_document->params, dvi_document->spec, filename);
        g_mutex_unlock (dvi_context_mutex);