The webkit used on win32 has webkit_web_frame_print_full() defined in include files, so we don't need a potentially conflicting extern declaration.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18835 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Phil Longstaff 2010-03-05 17:56:02 +00:00
parent be4fce5ed5
commit e822188f65

View File

@ -1001,10 +1001,7 @@ impl_webkit_export_to_file( GncHtml* self, const char *filepath )
static void
impl_webkit_print( GncHtml* self )
{
#ifdef G_OS_WIN32
extern GtkPrintOperationResult webkit_web_frame_print_full( WebKitWebFrame * frame,
GtkPrintOperation * op, GtkPrintOperationAction action, GError** error );
#else
#ifndef G_OS_WIN32
extern void webkit_web_frame_print( WebKitWebFrame * frame );
#endif