aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-shell.c
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <descalante@igalia.com>2010-12-08 20:07:23 +0800
committerDiego Escalante Urrelo <descalante@igalia.com>2010-12-09 06:43:11 +0800
commit0256c457bc5558d97c98c17ee673923def23a85e (patch)
tree17152f86a9fb3e0c9c073f4b288c388f6183424e /embed/ephy-embed-shell.c
parenteb8fa514e6e3edb93be01d44ecc80608501979df (diff)
downloadgsoc2013-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-shell.c')
-rw-r--r--embed/ephy-embed-shell.c26
1 files changed, 21 insertions, 5 deletions
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c
index d8650a50b..3fcf7ee82 100644
--- a/embed/ephy-embed-shell.c
+++ b/embed/ephy-embed-shell.c
@@ -173,6 +173,7 @@ ephy_embed_shell_get_favicon_cache (EphyEmbedShell *shell)
/**
* ephy_embed_shell_get_global_history:
+ * @shell: the #EphyEmbedShell
*
* Return value: (transfer none):
**/
@@ -191,6 +192,7 @@ ephy_embed_shell_get_global_history (EphyEmbedShell *shell)
/**
* ephy_embed_shell_get_downloader_view:
+ * @shell: the #EphyEmbedShell
*
* Return value: (transfer none):
**/
@@ -214,6 +216,7 @@ ephy_embed_shell_get_downloader_view (EphyEmbedShell *shell)
/**
* ephy_embed_shell_get_downloader_view_nocreate:
+ * @shell: the #EphyEmbedShell
*
* Return value: (transfer none):
**/
@@ -271,6 +274,7 @@ impl_get_embed_single (EphyEmbedShell *shell)
/**
* ephy_embed_shell_get_embed_single:
+ * @shell: the #EphyEmbedShell
*
* Return value: (transfer none):
**/
@@ -284,6 +288,7 @@ ephy_embed_shell_get_embed_single (EphyEmbedShell *shell)
/**
* ephy_embed_shell_get_encodings:
+ * @shell: the #EphyEmbedShell
*
* Return value: (transfer none):
**/
@@ -328,7 +333,7 @@ ephy_embed_shell_class_init (EphyEmbedShellClass *klass)
/**
* EphyEmbed::prepare-close:
- * @shell:
+ * @shell: the #EphyEmbedShell
*
* The ::prepare-close signal is emitted when epiphany is preparing to
* quit on command from the session manager. You can use it when you need
@@ -485,6 +490,14 @@ ephy_embed_shell_get_page_setup (EphyEmbedShell *shell)
return priv->page_setup;
}
+/**
+ * ephy_embed_shell_set_print_gettings:
+ * @shell: the #EphyEmbedShell
+ * @settings: the new #GtkPrintSettings object
+ *
+ * Sets the global #GtkPrintSettings object.
+ *
+ **/
void
ephy_embed_shell_set_print_settings (EphyEmbedShell *shell,
GtkPrintSettings *settings)
@@ -513,9 +526,12 @@ ephy_embed_shell_set_print_settings (EphyEmbedShell *shell,
}
/**
- * ephy_embed_shell_get_print_gettings:
+ * ephy_embed_shell_get_print_settings:
+ * @shell: the #EphyEmbedShell
*
- * Return value: (transfer none):
+ * Gets the global #GtkPrintSettings object.
+ *
+ * Returns: (transfer none): a #GtkPrintSettings object
**/
GtkPrintSettings *
ephy_embed_shell_get_print_settings (EphyEmbedShell *shell)
@@ -534,8 +550,8 @@ ephy_embed_shell_get_print_settings (EphyEmbedShell *shell)
priv->print_settings = gtk_print_settings_new_from_file (path, &error);
g_free (path);
- /* Note: the gtk print settings file format is the same as our legacy one,
- * so no need to migrate here.
+ /* Note: the gtk print settings file format is the same as our
+ * legacy one, so no need to migrate here.
*/
if (priv->print_settings == NULL)