Move WebKitGTK+ 1.1.6 guards to disable delayed pages
This commit is contained in:
parent
a079235183
commit
7d3fa2a478
3 changed files with 7 additions and 1 deletions
|
@ -1053,7 +1053,6 @@ webkit_web_view_progress_changed_cb (WebKitWebView* web_view,
|
|||
g_object_notify (G_OBJECT (view), "progress");
|
||||
}
|
||||
|
||||
#if WEBKIT_CHECK_VERSION (1, 1, 6)
|
||||
#if WEBKIT_CHECK_VERSION (1, 1, 14)
|
||||
static void
|
||||
midori_view_web_view_resource_request_cb (WebKitWebView* web_view,
|
||||
|
@ -1158,6 +1157,7 @@ midori_view_load_alternate_string (MidoriView* view,
|
|||
#endif
|
||||
}
|
||||
|
||||
#if WEBKIT_CHECK_VERSION (1, 1, 6)
|
||||
static gboolean
|
||||
midori_view_display_error (MidoriView* view,
|
||||
const gchar* uri,
|
||||
|
@ -3606,6 +3606,7 @@ midori_view_set_uri (MidoriView* view,
|
|||
g_object_notify (G_OBJECT (view), "uri");
|
||||
return;
|
||||
}
|
||||
#if WEBKIT_CHECK_VERSION (1, 1, 6)
|
||||
else if (g_str_has_prefix (uri, "pause:"))
|
||||
{
|
||||
gchar* title;
|
||||
|
@ -3622,6 +3623,7 @@ midori_view_set_uri (MidoriView* view,
|
|||
katze_item_set_uri (view->item, uri);
|
||||
g_object_notify (G_OBJECT (view), "uri");
|
||||
}
|
||||
#endif
|
||||
else if (g_str_has_prefix (uri, "javascript:"))
|
||||
{
|
||||
gboolean result;
|
||||
|
|
|
@ -200,7 +200,9 @@ midori_startup_get_type (void)
|
|||
{ MIDORI_STARTUP_BLANK_PAGE, "MIDORI_STARTUP_BLANK_PAGE", N_("Show Blank page") },
|
||||
{ MIDORI_STARTUP_HOMEPAGE, "MIDORI_STARTUP_HOMEPAGE", N_("Show Homepage") },
|
||||
{ MIDORI_STARTUP_LAST_OPEN_PAGES, "MIDORI_STARTUP_LAST_OPEN_PAGES", N_("Show last open tabs") },
|
||||
#if WEBKIT_CHECK_VERSION (1, 1, 6)
|
||||
{ MIDORI_STARTUP_DELAYED_PAGES, "MIDORI_STARTUP_DELAYED_PAGES", N_("Show last tabs without loading") },
|
||||
#endif
|
||||
{ 0, NULL, NULL }
|
||||
};
|
||||
type = g_enum_register_static ("MidoriStartup", values);
|
||||
|
|
|
@ -66,7 +66,9 @@ typedef enum
|
|||
MIDORI_STARTUP_BLANK_PAGE, /* One blank tab or speed dial is opened */
|
||||
MIDORI_STARTUP_HOMEPAGE, /* One homepage tab is opened */
|
||||
MIDORI_STARTUP_LAST_OPEN_PAGES, /* The session is loaded and saved */
|
||||
#if WEBKIT_CHECK_VERSION (1, 1, 6)
|
||||
MIDORI_STARTUP_DELAYED_PAGES /* The session is saved, loading pages is delayed */
|
||||
#endif
|
||||
} MidoriStartup;
|
||||
|
||||
GType
|
||||
|
|
Loading…
Reference in a new issue