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-window.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-window.c')
-rw-r--r-- | src/ephy-window.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index a734e94f9..5991190f7 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -3884,7 +3884,7 @@ ephy_window_new_with_chrome (EphyWebViewChrome chrome, * * Returns this window's UI manager. * - * Return value: an #GtkUIManager + * Return value: (transfer none): an #GtkUIManager **/ GObject * ephy_window_get_ui_manager (EphyWindow *window) @@ -3900,7 +3900,7 @@ ephy_window_get_ui_manager (EphyWindow *window) * * Returns this window's toolbar as an #EggEditableToolbar. * - * Return value: an #EggEditableToolbar + * Return value: (transfer none): an #EggEditableToolbar **/ GtkWidget * ephy_window_get_toolbar (EphyWindow *window) @@ -3916,7 +3916,7 @@ ephy_window_get_toolbar (EphyWindow *window) * * Returns the #GtkNotebook used by this window. * - * Return value: the @window's #GtkNotebook + * Return value: (transfer none): the @window's #GtkNotebook **/ GtkWidget * ephy_window_get_notebook (EphyWindow *window) @@ -3932,7 +3932,7 @@ ephy_window_get_notebook (EphyWindow *window) * * Returns the #EphyFindToolbar used by this window. * - * Return value: the @window's #EphyFindToolbar + * Return value: (transfer none): the @window's #EphyFindToolbar **/ GtkWidget * ephy_window_get_find_toolbar (EphyWindow *window) @@ -3948,7 +3948,7 @@ ephy_window_get_find_toolbar (EphyWindow *window) * * Returns this window's statusbar as an #EphyStatusbar. * - * Return value: This window's statusbar + * Return value: (transfer none): This window's statusbar **/ GtkWidget * ephy_window_get_statusbar (EphyWindow *window) @@ -4196,7 +4196,7 @@ ephy_window_get_is_print_preview (EphyWindow *window) * Returns the #EphyEmbedEvent for the current context menu. * Use this to get the event from the action callback. * - * Return value: an #EphyEmbedEvent, or %NULL + * Return value: (transfer none): an #EphyEmbedEvent, or %NULL **/ EphyEmbedEvent * ephy_window_get_context_event (EphyWindow *window) |