summaryrefslogtreecommitdiff
path: root/desktop/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/print.c')
-rw-r--r--desktop/print.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/desktop/print.c b/desktop/print.c
index a5b5c125a..0099a8c69 100644
--- a/desktop/print.c
+++ b/desktop/print.c
@@ -162,8 +162,7 @@ bool print_draw_next_page(const struct printer *printer,
hlcache_handle *print_init(hlcache_handle *content,
struct print_settings *settings)
{
-// newcache
-#if 0
+#ifdef FIX_CORE_PRINTING
hlcache_handle* printed_content;
hlcache_handle_user *user_sentinel;
@@ -244,6 +243,7 @@ bool print_apply_settings(hlcache_handle *content,
bool print_cleanup(hlcache_handle *content, const struct printer *printer,
struct print_settings *settings)
{
+#ifdef FIX_CORE_PRINTING
printer->print_end();
html_redraw_printing = false;
@@ -257,6 +257,7 @@ bool print_cleanup(hlcache_handle *content, const struct printer *printer,
free((void *)settings->output);
free(settings);
+#endif
return true;
}