diff options
author | Iain Nicol <iain@thenicols.net> | 2009-11-04 04:12:13 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-11-18 19:40:18 +0800 |
commit | b60ae4ba76dcafc93bc805203e4962ade100f300 (patch) | |
tree | d25bd28c7cffd5049538e6d275aad71116fbc300 /embed/ephy-history.c | |
parent | dedbad484feca0d64e1a75d983a2a251ca4a9aae (diff) | |
download | gsoc2013-epiphany-b60ae4ba76dcafc93bc805203e4962ade100f300.tar gsoc2013-epiphany-b60ae4ba76dcafc93bc805203e4962ade100f300.tar.gz gsoc2013-epiphany-b60ae4ba76dcafc93bc805203e4962ade100f300.tar.bz2 gsoc2013-epiphany-b60ae4ba76dcafc93bc805203e4962ade100f300.tar.lz gsoc2013-epiphany-b60ae4ba76dcafc93bc805203e4962ade100f300.tar.xz gsoc2013-epiphany-b60ae4ba76dcafc93bc805203e4962ade100f300.tar.zst gsoc2013-epiphany-b60ae4ba76dcafc93bc805203e4962ade100f300.zip |
Add GObject introspection annotations to many *_get_* functions
Partial fix for bug #599757.
Signed-off-by: Xan Lopez <xan@gnome.org>
Diffstat (limited to 'embed/ephy-history.c')
-rw-r--r-- | embed/ephy-history.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/embed/ephy-history.c b/embed/ephy-history.c index 127420a48..ae0e563dc 100644 --- a/embed/ephy-history.c +++ b/embed/ephy-history.c @@ -740,6 +740,11 @@ internal_get_host (EphyHistory *eh, const char *url, gboolean create) return host; } +/** + * ephy_history_get_host: + * + * Return value: (transfer none): + **/ EphyNode * ephy_history_get_host (EphyHistory *eh, const char *url) { @@ -875,6 +880,11 @@ impl_add_page (EphyHistory *eb, return TRUE; } +/** + * ephy_history_get_page: + * + * Return value: (transfer none): + **/ EphyNode * ephy_history_get_page (EphyHistory *eb, const char *url) @@ -975,12 +985,22 @@ ephy_history_clear (EphyHistory *gh) g_signal_emit (gh, signals[CLEARED], 0); } +/** + * ephy_history_get_hosts: + * + * Return value: (transfer none): + **/ EphyNode * ephy_history_get_hosts (EphyHistory *eb) { return eb->priv->hosts; } +/** + * ephy_history_get_pages: + * + * Return value: (transfer none): + **/ EphyNode * ephy_history_get_pages (EphyHistory *eb) { |