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 /src/ephy-session.c | |
parent | dedbad484feca0d64e1a75d983a2a251ca4a9aae (diff) | |
download | gsoc2013-epiphany-b60ae4ba76dcafc93bc805203e4962ade100f300.tar.gz 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 'src/ephy-session.c')
-rw-r--r-- | src/ephy-session.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ephy-session.c b/src/ephy-session.c index e77d12b73..3919c6c1f 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -1601,7 +1601,8 @@ ephy_session_load (EphySession *session, * ephy_session_get_windows: * @session: the #EphySession * - * Returns: the list of open #EphyWindow:s. + * Returns: (element-type EphyWindow) (transfer container): the list of + * open #EphyWindow:s. **/ GList * ephy_session_get_windows (EphySession *session) @@ -1659,7 +1660,8 @@ ephy_session_remove_window (EphySession *session, * need to take an action (like opening an url) on * a window but you dont have a target window. * - * Return value: the current active non-popup browser window, or NULL of there is none. + * Return value: (transfer none): the current active non-popup browser + * window, or NULL of there is none. **/ EphyWindow * ephy_session_get_active_window (EphySession *session) |