diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2009-01-16 06:07:08 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2009-01-16 06:07:08 +0800 |
commit | 5c4c64876f3f2b58809fd047abed1fba8265cfbf (patch) | |
tree | 89bee231e2f614abfd28b1d51f2021360cd461e3 /src/ephy-location-action.c | |
parent | 2fefd6be854823210b1f29462866656a92ae0331 (diff) | |
download | gsoc2013-epiphany-5c4c64876f3f2b58809fd047abed1fba8265cfbf.tar.gz gsoc2013-epiphany-5c4c64876f3f2b58809fd047abed1fba8265cfbf.tar.zst gsoc2013-epiphany-5c4c64876f3f2b58809fd047abed1fba8265cfbf.zip |
Include a bookmark indication in the woohoo bar
If the result shown in the row is a bookmark, the epiphany bookmark icon will
be drawn to the right of it.
svn path=/trunk/; revision=8693
Diffstat (limited to 'src/ephy-location-action.c')
-rw-r--r-- | src/ephy-location-action.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c index 1fdace52d..486a4daea 100644 --- a/src/ephy-location-action.c +++ b/src/ephy-location-action.c @@ -133,13 +133,11 @@ match_func (GtkEntryCompletion *completion, ret = (g_regex_match (regex, item, G_REGEX_MATCH_NOTEMPTY, NULL) || g_regex_match (regex, url, G_REGEX_MATCH_NOTEMPTY, NULL) || g_regex_match (regex, keywords, G_REGEX_MATCH_NOTEMPTY, NULL) - || (extra && g_regex_match (regex, extra, G_REGEX_MATCH_NOTEMPTY, NULL)) ); g_free (item); g_free (url); g_free (keywords); - g_free (extra); return ret; } |