Mercurial > pidgin
changeset 32284:6fb2b4b44934
Clean up documentation.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Sat, 15 Oct 2011 23:25:32 +0000 |
parents | 1cec4425d0cc |
children | 13b5d6eb099d |
files | pidgin/gtkwebview.h |
diffstat | 1 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkwebview.h Sat Oct 15 23:11:35 2011 +0000 +++ b/pidgin/gtkwebview.h Sat Oct 15 23:25:32 2011 +0000 @@ -64,22 +64,22 @@ /** * Returns the GType for a GtkWebView widget * - * @return the GType for GtkWebView widget + * @return The GType for GtkWebView widget */ GType gtk_webview_get_type(void); /** * Create a new GtkWebView object * - * @return a GtkWidget corresponding to the GtkWebView object + * @return A GtkWidget corresponding to the GtkWebView object */ GtkWidget *gtk_webview_new(void); /** * Set the vertical adjustment for the GtkWebView. * - * @param webview The GtkWebView. - * @param vadj The GtkAdjustment that control the webview. + * @param webview The GtkWebView object + * @param vadj The GtkAdjustment that control the webview */ void gtk_webview_set_vadjustment(GtkWebView *webview, GtkAdjustment *vadj); @@ -109,7 +109,7 @@ * * @param webview The GtkWebView object * - * @return gboolean indicating whether the webview is empty. + * @return gboolean indicating whether the webview is empty */ gboolean gtk_webview_is_empty(GtkWebView *webview); @@ -120,8 +120,8 @@ * conditions when calling JS functions immediately after opening the * page. * - * @param webview the GtkWebView object - * @param script the script to execute + * @param webview The GtkWebView object + * @param script The script to execute */ void gtk_webview_safe_execute_script(GtkWebView *webview, const char *script); @@ -131,15 +131,15 @@ * * @param str The string to escape and quote * - * @return the quoted string. + * @return The quoted string */ char *gtk_webview_quote_js_string(const char *str); /** * Scrolls the Webview to the end of its contents. * - * @param webview The GtkWebView. - * @param smooth A boolean indicating if smooth scrolling should be used. + * @param webview The GtkWebView object + * @param smooth A boolean indicating if smooth scrolling should be used */ void gtk_webview_scroll_to_end(GtkWebView *webview, gboolean smooth);