comparison pidgin/gtkutils.h @ 32637:5aa171c8776b

Fix a bunch of tiny problems generating our doxygen documentation
author Mark Doliner <mark@kingant.net>
date Sun, 18 Sep 2011 20:46:06 +0000
parents d9cb56d33839
children 68fe7b5211a7
comparison
equal deleted inserted replaced
32636:a617a949e545 32637:5aa171c8776b
926 */ 926 */
927 GdkPixbuf *pidgin_pixbuf_new_from_file_at_scale(const char *filename, int width, int height, gboolean preserve_aspect_ratio); 927 GdkPixbuf *pidgin_pixbuf_new_from_file_at_scale(const char *filename, int width, int height, gboolean preserve_aspect_ratio);
928 928
929 /** 929 /**
930 * Add scrollbars to a widget 930 * Add scrollbars to a widget
931 * @param widget The child widget 931 * @param child The child widget
932 * @hscrollbar_policy Horizontal scrolling policy 932 * @param hscrollbar_policy Horizontal scrolling policy
933 * @vscrollbar_policy Vertical scrolling policy 933 * @param vscrollbar_policy Vertical scrolling policy
934 * @shadow Shadow type 934 * @param shadow_type Shadow type
935 * @width Desired widget width, or -1 for default 935 * @param width Desired widget width, or -1 for default
936 * @height Desired widget height, or -1 for default 936 * @param height Desired widget height, or -1 for default
937 * 937 *
938 * @since 2.8.0 938 * @since 2.8.0
939 */ 939 */
940 GtkWidget *pidgin_make_scrollable(GtkWidget *child, GtkPolicyType hscrollbar_policy, GtkPolicyType vscrollbar_policy, GtkShadowType shadow_type, int width, int height); 940 GtkWidget *pidgin_make_scrollable(GtkWidget *child, GtkPolicyType hscrollbar_policy, GtkPolicyType vscrollbar_policy, GtkShadowType shadow_type, int width, int height);
941 941