comparison src/gtkimhtml.h @ 12323:fc464a0abccc

[gaim-migrate @ 14627] Function prototypes need to be of the form foo(void); instead of foo(); for function that don't take any arguments. This allows the compiler to detect mistakes were someone passes arguments to such a function. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 04 Dec 2005 18:19:56 +0000
parents fa17fc619f17
children 3726ff9022f3
comparison
equal deleted inserted replaced
12322:c7ae1fd0827d 12323:fc464a0abccc
394 /** 394 /**
395 * Creates and returns an new GTK+ IM/HTML scalable object. 395 * Creates and returns an new GTK+ IM/HTML scalable object.
396 * 396 *
397 * @return A new IM/HTML Scalable object. 397 * @return A new IM/HTML Scalable object.
398 */ 398 */
399 GtkIMHtmlScalable *gtk_imhtml_scalable_new(); 399 GtkIMHtmlScalable *gtk_imhtml_scalable_new(void);
400 400
401 /** 401 /**
402 * Creates and returns an new GTK+ IM/HTML scalable object with an image. 402 * Creates and returns an new GTK+ IM/HTML scalable object with an image.
403 * 403 *
404 * @param img A GdkPixbuf of the image to add. 404 * @param img A GdkPixbuf of the image to add.
437 /** 437 /**
438 * Creates and returns an new GTK+ IM/HTML scalable with a horizontal rule. 438 * Creates and returns an new GTK+ IM/HTML scalable with a horizontal rule.
439 * 439 *
440 * @return A new IM/HTML Scalable object with an image. 440 * @return A new IM/HTML Scalable object with an image.
441 */ 441 */
442 GtkIMHtmlScalable *gtk_imhtml_hr_new(); 442 GtkIMHtmlScalable *gtk_imhtml_hr_new(void);
443 443
444 /** 444 /**
445 * Destroys and frees a GTK+ IM/HTML scalable horizontal rule. 445 * Destroys and frees a GTK+ IM/HTML scalable horizontal rule.
446 * 446 *
447 * @param scale The GTK+ IM/HTML scalable. 447 * @param scale The GTK+ IM/HTML scalable.