Mercurial > pidgin
comparison src/pluginpref.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 | 26eac2362c32 |
| children | 8ae981f2c9cb |
comparison
equal
deleted
inserted
replaced
| 12322:c7ae1fd0827d | 12323:fc464a0abccc |
|---|---|
| 50 /** | 50 /** |
| 51 * Create a new plugin preference frame | 51 * Create a new plugin preference frame |
| 52 * | 52 * |
| 53 * @return a new GaimPluginPrefFrame | 53 * @return a new GaimPluginPrefFrame |
| 54 */ | 54 */ |
| 55 GaimPluginPrefFrame *gaim_plugin_pref_frame_new(); | 55 GaimPluginPrefFrame *gaim_plugin_pref_frame_new(void); |
| 56 | 56 |
| 57 /** | 57 /** |
| 58 * Destroy a plugin preference frame | 58 * Destroy a plugin preference frame |
| 59 * | 59 * |
| 60 * @param frame The plugin frame to destroy | 60 * @param frame The plugin frame to destroy |
| 80 /** | 80 /** |
| 81 * Create a new plugin preference | 81 * Create a new plugin preference |
| 82 * | 82 * |
| 83 * @return a new GaimPluginPref | 83 * @return a new GaimPluginPref |
| 84 */ | 84 */ |
| 85 GaimPluginPref *gaim_plugin_pref_new(); | 85 GaimPluginPref *gaim_plugin_pref_new(void); |
| 86 | 86 |
| 87 /** | 87 /** |
| 88 * Create a new plugin preference with name | 88 * Create a new plugin preference with name |
| 89 * | 89 * |
| 90 * @param name The name of the pref | 90 * @param name The name of the pref |
