diff options
author | raveit65 <[email protected]> | 2018-03-27 11:20:38 +0200 |
---|---|---|
committer | monsta <[email protected]> | 2018-03-27 15:09:27 +0300 |
commit | 4ecb05838d62ce7b9d0c82c935597c60107548d2 (patch) | |
tree | 0214595bf93da87b6de3bbdd4590b6c9bff12cfd /libview | |
parent | 82db9cef2c332e8044adb6184d067be6684229b6 (diff) | |
download | atril-4ecb05838d62ce7b9d0c82c935597c60107548d2.tar.bz2 atril-4ecb05838d62ce7b9d0c82c935597c60107548d2.tar.xz |
libview: fix build without epub
Fixes https://github.com/mate-desktop/atril/issues/308
Diffstat (limited to 'libview')
-rw-r--r-- | libview/ev-jobs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libview/ev-jobs.c b/libview/ev-jobs.c index 0fd2554f..607bc2c2 100644 --- a/libview/ev-jobs.c +++ b/libview/ev-jobs.c @@ -876,8 +876,6 @@ snapshot_callback(WebKitWebView *webview, gtk_widget_destroy (gtk_widget_get_toplevel (GTK_WIDGET (webview))); } -#endif /* ENABLE_EPUB */ - static void web_thumbnail_get_screenshot_cb (WebKitWebView *webview, WebKitLoadEvent event, @@ -910,6 +908,8 @@ webview_load_failed_cb (WebKitWebView *webview, return TRUE; } +#endif /* ENABLE_EPUB */ + static gboolean ev_job_thumbnail_run (EvJob *job) { |