mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
0f2d3ed572
commit
78f2c9f275
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user