Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/ev-document.c2
-rw-r--r--backend/ev-document.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/backend/ev-document.c b/backend/ev-document.c
index b2a5c8d..4491003 100644
--- a/backend/ev-document.c
+++ b/backend/ev-document.c
@@ -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
diff --git a/backend/ev-document.h b/backend/ev-document.h
index 9d8b662..e4ff783 100644
--- a/backend/ev-document.h
+++ b/backend/ev-document.h
@@ -23,6 +23,7 @@
#include <glib-object.h>
#include <glib.h>
+#include <gdk/gdk.h>
G_BEGIN_DECLS