[Webkit-unassigned] [Bug 16222] [GTK] Implement inline search and highlighting of matching strings.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Dec 1 06:49:29 PST 2007


http://bugs.webkit.org/show_bug.cgi?id=16222


xan.lopez at gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xan.lopez at gmail.com




------- Comment #2 from xan.lopez at gmail.com  2007-12-01 06:49 PDT -------
+gboolean webkit_web_view_search_string(WebKitWebView* webView, const gchar*
string, gboolean forward, gboolean case_sensitive, gboolean wrap)
+{
+    g_return_val_if_fail(WEBKIT_IS_WEB_VIEW(webView), NULL);
+    g_return_val_if_fail(string, NULL);

The function returns boolean, so it's FALSE :)

+guint webkit_web_view_highlight_matches(WebKitWebView* webView, const gchar*
string, gboolean case_sensitive, guint limit)
+{
+    g_return_val_if_fail(WEBKIT_IS_WEB_VIEW(webView), NULL);
+    g_return_val_if_fail(string, NULL);

And zero here I guess.

Looks good to me other than that.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list