]> www.fi.muni.cz Git - evince.git/commitdiff
Fix a couple of problems so it compile.
authorOwen Taylor <otaylor@redhat.com>
Tue, 21 Dec 2004 23:32:07 +0000 (23:32 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Tue, 21 Dec 2004 23:32:07 +0000 (23:32 +0000)
Tue Dec 21 18:26:24 2004  Owen Taylor  <otaylor@redhat.com>

        * backend/ev-document.[ch]: Fix a couple of problems so
        it compile.

ChangeLog
backend/ev-document.c
backend/ev-document.h

index 84bf599babb854123c963959e2d61c64e4995d6e..0239df9e36043647ba03cd9375a33f5fc63a271f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Dec 21 18:26:24 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * backend/ev-document.[ch]: Fix a couple of problems so
+       it compile.
+
 Tue Dec 21 18:20:40 2004  Owen Taylor  <otaylor@redhat.com>
 
        * viewer/* backend/* configure.ac Makefile.am: Move viewer directory 
index b2a5c8d94bca9cbc69f8160db7241bccdf7782ba..44910032276b36b3dd9facebb7c2b5440226d037 100644 (file)
@@ -56,7 +56,7 @@ ev_document_load (EvDocument  *document,
                  GError      *error)
 {
        EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
-       iface->load (document, uri);
+       iface->load (document, uri, error);
 }
 
 int
index 9d8b662c2936a233c2673a3e0a2c99a48fd6b2f5..e4ff783305bf65de7e96ae772965968b79378ab3 100644 (file)
@@ -23,6 +23,7 @@
 
 #include <glib-object.h>
 #include <glib.h>
+#include <gdk/gdk.h>
 
 G_BEGIN_DECLS