diff src/savedstatuses.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 465ddcb3e9e8
children 473c23442a36
line wrap: on
line diff
--- a/src/savedstatuses.h	Sun Dec 04 18:19:06 2005 +0000
+++ b/src/savedstatuses.h	Sun Dec 04 18:19:56 2005 +0000
@@ -156,7 +156,7 @@
  *
  * @return A pointer to the in-use GaimSavedStatus.
  */
-GaimSavedStatus *gaim_savedstatus_get_current();
+GaimSavedStatus *gaim_savedstatus_get_current(void);
 
 /**
  * Returns the saved status that gets used when your
@@ -164,7 +164,7 @@
  *
  * @return A pointer to the idle-away GaimSavedStatus.
  */
-GaimSavedStatus *gaim_savedstatus_get_idleaway();
+GaimSavedStatus *gaim_savedstatus_get_idleaway(void);
 
 /**
  * Finds a saved status with the specified title.
@@ -306,7 +306,7 @@
  *
  * @return the handle to the status subsystem
  */
-void *gaim_savedstatuses_get_handle();
+void *gaim_savedstatuses_get_handle(void);
 
 /**
  * Initializes the status subsystem.