Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libdocument/ev-document.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@src.gnome.org>2008-04-27 15:52:51 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2008-04-27 15:52:51 (GMT)
commitae482b5ca216978f0fdc1e5b89e9709c3ff8b06b (patch)
tree2320788d243abd58ffdd3f0a4050988082d4721d /libdocument/ev-document.c
parent5241892c3cd9adf747a919f78357a8fd0e1367ec (diff)
Merge branch 'ev-debug' into work
svn path=/trunk/; revision=3025
Diffstat (limited to 'libdocument/ev-document.c')
-rw-r--r--libdocument/ev-document.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/libdocument/ev-document.c b/libdocument/ev-document.c
index 5e582d0..7bb86be 100644
--- a/libdocument/ev-document.c
+++ b/libdocument/ev-document.c
@@ -30,7 +30,6 @@ static void ev_document_class_init (gpointer g_class);
GMutex *ev_doc_mutex = NULL;
GMutex *ev_fc_mutex = NULL;
-#define LOG(x)
GType
ev_document_get_type (void)
{
@@ -118,7 +117,7 @@ ev_document_load (EvDocument *document,
{
EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
gboolean retval;
- LOG ("ev_document_load");
+
retval = iface->load (document, uri, error);
return retval;
@@ -132,7 +131,6 @@ ev_document_save (EvDocument *document,
EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
gboolean retval;
- LOG ("ev_document_save");
retval = iface->save (document, uri, error);
return retval;
@@ -144,7 +142,6 @@ ev_document_get_n_pages (EvDocument *document)
EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
gint retval;
- LOG ("ev_document_get_n_pages");
retval = iface->get_n_pages (document);
return retval;
@@ -173,7 +170,6 @@ ev_document_get_page_size (EvDocument *document,
{
EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
- LOG ("ev_document_get_page_size");
iface->get_page_size (document, page, width, height);
}
@@ -183,7 +179,6 @@ ev_document_get_page_label (EvDocument *document,
{
EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
- LOG ("ev_document_get_page_label");
if (iface->get_page_label == NULL)
return NULL;
@@ -215,7 +210,6 @@ ev_document_get_attachments (EvDocument *document)
EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
GList *retval;
- LOG ("ev_document_get_attachments");
if (iface->get_attachments == NULL)
return NULL;
retval = iface->get_attachments (document);
@@ -230,7 +224,6 @@ ev_document_render (EvDocument *document,
EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
cairo_surface_t *retval;
- LOG ("ev_document_render_pixbuf");
g_assert (iface->render);
retval = iface->render (document, rc);