Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libview/ev-print-operation.c
diff options
context:
space:
mode:
authorHib Eris <hib@hiberis.nl>2009-12-29 15:12:02 (GMT)
committer Hib Eris <hib@hiberis.nl>2009-12-29 16:09:19 (GMT)
commitb85564ae90e10935efae109e8fc584c435f17277 (patch)
treeeaa4aa3240937fc81c5bfcb1b8f0309c30381466 /libview/ev-print-operation.c
parent54a6888db6ae3595d299be0d65851d09edecfee8 (diff)
[windows] Fix printing on Windows
Fixes bgo#604705
Diffstat (limited to 'libview/ev-print-operation.c')
-rw-r--r--libview/ev-print-operation.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libview/ev-print-operation.c b/libview/ev-print-operation.c
index 555d4bf..0f6e607 100644
--- a/libview/ev-print-operation.c
+++ b/libview/ev-print-operation.c
@@ -2062,6 +2062,8 @@ ev_print_operation_new (EvDocument *document)
#if GTKUNIXPRINT_ENABLED
op = EV_PRINT_OPERATION (g_object_new (EV_TYPE_PRINT_OPERATION_EXPORT,
"document", document, NULL));
+#else
+ op = NULL;
#endif
return op;
}