aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-find.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-12-02 05:29:20 +0800
committerChristian Persch <chpe@src.gnome.org>2006-12-02 05:29:20 +0800
commit4521b7af2f9f9b9019486cb0ed9cdade37b6fd50 (patch)
treec7dd23cb8c8a85c1b43878fd97ccee8bbd92a916 /embed/ephy-embed-find.c
parentfb2c1c3d03f4333971eb1048bd3992ba20f45577 (diff)
downloadgsoc2013-epiphany-4521b7af2f9f9b9019486cb0ed9cdade37b6fd50.tar
gsoc2013-epiphany-4521b7af2f9f9b9019486cb0ed9cdade37b6fd50.tar.gz
gsoc2013-epiphany-4521b7af2f9f9b9019486cb0ed9cdade37b6fd50.tar.bz2
gsoc2013-epiphany-4521b7af2f9f9b9019486cb0ed9cdade37b6fd50.tar.lz
gsoc2013-epiphany-4521b7af2f9f9b9019486cb0ed9cdade37b6fd50.tar.xz
gsoc2013-epiphany-4521b7af2f9f9b9019486cb0ed9cdade37b6fd50.tar.zst
gsoc2013-epiphany-4521b7af2f9f9b9019486cb0ed9cdade37b6fd50.zip
Another mozilla API change.
2006-12-01 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-embed-find.c: (ephy_embed_find_find_again): * embed/ephy-embed-find.h: * embed/mozilla/EphyFind.cpp: * embed/mozilla/EphyFind.h: * embed/mozilla/mozilla-embed-find.cpp: * src/ephy-find-toolbar.c: (ephy_find_toolbar_find_next), (ephy_find_toolbar_find_previous): Another mozilla API change. * m4/gecko.m4: Add -lxpcomglue_s to EXTRA_LIBS on trunk.
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