aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-find.c
diff options
context:
space:
mode:
Diffstat (limited to 'embed/ephy-embed-find.c')
-rw-r--r--embed/ephy-embed-find.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/embed/ephy-embed-find.c b/embed/ephy-embed-find.c
index bfbaa643c..b93680853 100644
--- a/embed/ephy-embed-find.c
+++ b/embed/ephy-embed-find.c
@@ -67,15 +67,17 @@ ephy_embed_find_find (EphyEmbedFind *find,
* ephy_embed_find_find_again:
* @embed: an #EphyEmbedFind
* @forward %TRUE to search forwards in the document
+ * @links_only: whether to only search the text in links
*
* Return value: whether a match was found
**/
EphyEmbedFindResult
ephy_embed_find_find_again (EphyEmbedFind *find,
- gboolean forward)
+ gboolean forward,
+ gboolean links_only)
{
EphyEmbedFindIface *iface = EPHY_EMBED_FIND_GET_IFACE (find);
- return iface->find_again (find, forward);
+ return iface->find_again (find, forward, links_only);
}
void