Properly check for the unavailability of windows webkit.

The logic was accidentally inverted when #ifndef got replaced with if HAVE().
As a side effect, this fixes a mingw gcc-4.4 compiler warning.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19205 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens 2010-05-25 21:15:00 +00:00
parent 0f2d3ed572
commit 78f2c9f275

View File

@ -1063,7 +1063,7 @@ impl_webkit_export_to_file( GncHtml* self, const char *filepath )
static void
impl_webkit_print( GncHtml* self )
{
#if HAVE(WEBKIT_WEB_FRAME_PRINT_FULL)
#if !HAVE(WEBKIT_WEB_FRAME_PRINT_FULL)
extern void webkit_web_frame_print( WebKitWebFrame * frame );
#endif