diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-12-08 20:07:23 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-12-09 06:43:11 +0800 |
commit | 0256c457bc5558d97c98c17ee673923def23a85e (patch) | |
tree | 17152f86a9fb3e0c9c073f4b288c388f6183424e /embed/ephy-embed-single.c | |
parent | eb8fa514e6e3edb93be01d44ecc80608501979df (diff) | |
download | gsoc2013-epiphany-0256c457bc5558d97c98c17ee673923def23a85e.tar.gz gsoc2013-epiphany-0256c457bc5558d97c98c17ee673923def23a85e.tar.zst gsoc2013-epiphany-0256c457bc5558d97c98c17ee673923def23a85e.zip |
introspection: fix wrong and missing annotations
Bug #636790
Diffstat (limited to 'embed/ephy-embed-single.c')
-rw-r--r-- | embed/ephy-embed-single.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c index 94a18b889..afab4e1cb 100644 --- a/embed/ephy-embed-single.c +++ b/embed/ephy-embed-single.c @@ -293,14 +293,13 @@ ephy_embed_single_class_init (EphyEmbedSingleClass *klass) /** * EphyEmbedSingle::new-window: - * @single: * @parent_embed: the #EphyEmbed requesting the new window, or %NULL * @mask: a #EphyEmbedChrome * * The ::new_window signal is emitted when a new window needs to be opened. * For example, when a JavaScript popup window was opened. * - * Return a new #EphyEmbed. + * Returns: (transfer none): a new #EphyEmbed. **/ g_signal_new ("new-window", EPHY_TYPE_EMBED_SINGLE, @@ -620,11 +619,11 @@ ephy_embed_single_get_network_status (EphyEmbedSingle *single) * method and arguments: <code>window.open("@address", * "_blank", "@features");</code>. * - * Returns: the new embed. This is either a #EphyEmbed, or, when @features specified - * "chrome", a #GtkMozEmbed. + * Returns: (transfer none): the new embed. This is either a #EphyEmbed, or, + * when @features specified "chrome", a #GtkMozEmbed. * - * NOTE: Use ephy_shell_new_tab() unless this handling of the @features string is - * required. + * NOTE: Use ephy_shell_new_tab() unless this handling of the @features string + * is required. */ GtkWidget * ephy_embed_single_open_window (EphyEmbedSingle *single, @@ -648,8 +647,8 @@ ephy_embed_single_open_window (EphyEmbedSingle *single, * The #EphyEmbedSingleFormAuthData structs and the #GSList are owned * by @single and should not be freed by the user. * - * Returns: #GSList with the possible auto-fills for the forms in - * @uri, or %NULL + * Returns: (transfer none): #GSList with the possible auto-fills for the forms + * in @uri, or %NULL **/ GSList * ephy_embed_single_get_form_auth (EphyEmbedSingle *single, |