diff options
author | Benjamin Otte <otte@gnome.org> | 2009-08-14 20:17:51 +0800 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2009-08-15 05:10:24 +0800 |
commit | 013bbd59ea30afe7a6005b13fc27bf4158ccf674 (patch) | |
tree | 9662481ef2ba3c0752c7b8335baf2b0bb817ee69 | |
parent | da1f3cfc5bc93471642bd6b970ea87e663ba1d6c (diff) | |
download | gsoc2013-epiphany-013bbd59ea30afe7a6005b13fc27bf4158ccf674.tar.gz gsoc2013-epiphany-013bbd59ea30afe7a6005b13fc27bf4158ccf674.tar.zst gsoc2013-epiphany-013bbd59ea30afe7a6005b13fc27bf4158ccf674.zip |
ephy_find_toolbar_set_properties() => ephy_find_toolbar_mark_matches()
Renaming to accurately reflect, what the function does.
-rw-r--r-- | src/ephy-find-toolbar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ephy-find-toolbar.c b/src/ephy-find-toolbar.c index 3513235a3..5de45bb9b 100644 --- a/src/ephy-find-toolbar.c +++ b/src/ephy-find-toolbar.c @@ -227,7 +227,7 @@ find_prev_cb (EphyFindToolbar *toolbar) } static void -ephy_find_toolbar_set_properties (EphyFindToolbar *toolbar) +ephy_find_toolbar_mark_matches (EphyFindToolbar *toolbar) { EphyFindToolbarPrivate *priv = toolbar->priv; WebKitWebView *web_view = priv->web_view; @@ -280,7 +280,7 @@ entry_changed_cb (GtkEntry *entry, g_free (priv->find_string); priv->find_string = g_strdup (gtk_entry_get_text (GTK_ENTRY (priv->entry))); - ephy_find_toolbar_set_properties (toolbar); + ephy_find_toolbar_mark_matches (toolbar); result = real_find (priv, TRUE); set_status (toolbar, result); @@ -403,7 +403,7 @@ case_sensitive_toggled_cb (GtkWidget *check, (proxy, G_CALLBACK (case_sensitive_menu_toggled_cb), toolbar); } - ephy_find_toolbar_set_properties (toolbar); + ephy_find_toolbar_mark_matches (toolbar); } static gboolean |