Liberally sprinkle #ifdef around

svn path=/trunk/netsurf/; revision=10417
This commit is contained in:
John Mark Bell 2010-04-16 20:58:09 +00:00
parent c4de2cf6b3
commit 328fed8122

View File

@ -162,8 +162,7 @@ bool print_draw_next_page(const struct printer *printer,
hlcache_handle *print_init(hlcache_handle *content, hlcache_handle *print_init(hlcache_handle *content,
struct print_settings *settings) struct print_settings *settings)
{ {
// newcache #ifdef FIX_CORE_PRINTING
#if 0
hlcache_handle* printed_content; hlcache_handle* printed_content;
hlcache_handle_user *user_sentinel; 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, bool print_cleanup(hlcache_handle *content, const struct printer *printer,
struct print_settings *settings) struct print_settings *settings)
{ {
#ifdef FIX_CORE_PRINTING
printer->print_end(); printer->print_end();
html_redraw_printing = false; html_redraw_printing = false;
@ -257,6 +257,7 @@ bool print_cleanup(hlcache_handle *content, const struct printer *printer,
free((void *)settings->output); free((void *)settings->output);
free(settings); free(settings);
#endif
return true; return true;
} }