]> spindle.queued.net Git - midori/commitdiff
Use DOM API to get selected text in WebKitGTK+ 1.4.3
authorLucas Baudin <xapantu@gmail.com>
Wed, 5 Oct 2011 18:50:31 +0000 (20:50 +0200)
committerChristian Dywan <christian@twotoasts.de>
Wed, 5 Oct 2011 18:51:18 +0000 (20:51 +0200)
Related to https://bugs.launchpad.net/midori/+bug/799603

midori/midori-view.c

index 570e329ecf47aed157123fb7d43729826eca8cb1..fd45fb766e4f993f548882f1d481ce0c463a3044 100644 (file)
@@ -39,7 +39,7 @@
     #include <sys/utsname.h>
 #endif
 
-#if !WEBKIT_CHECK_VERSION (1, 5, 1)
+#if !WEBKIT_CHECK_VERSION (1, 4, 3)
 /* This is unstable API, so we need to declare it */
 gchar*
 webkit_web_view_get_selected_text (WebKitWebView* web_view);
@@ -4184,7 +4184,7 @@ midori_view_get_link_uri (MidoriView* view)
 gboolean
 midori_view_has_selection (MidoriView* view)
 {
-#if WEBKIT_CHECK_VERSION (1, 5, 1)
+#if WEBKIT_CHECK_VERSION (1, 4, 3)
     WebKitDOMDocument* doc;
     WebKitDOMDOMWindow* window;
     WebKitDOMDOMSelection* selection;
@@ -4194,7 +4194,7 @@ midori_view_has_selection (MidoriView* view)
     g_return_val_if_fail (MIDORI_IS_VIEW (view), FALSE);
 
 
-#if WEBKIT_CHECK_VERSION (1, 5, 1)
+#if WEBKIT_CHECK_VERSION (1, 4, 3)
     doc = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view->web_view));
     window = webkit_dom_document_get_default_view (doc);
     selection = webkit_dom_dom_window_get_selection (window);