Mercurial > pidgin
diff src/savedstatuses.h @ 13681:c4be649e2aca
[gaim-migrate @ 16084]
Fixed a bug where you wouldn't become auto-away when idle if you're a new
user and you haven't selected which status to use when auto-awaying.
Also improved a few comments.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Sun, 23 Apr 2006 02:57:08 +0000 |
| parents | 53fdb7cc6940 |
| children | a8a033a89ee0 |
line wrap: on
line diff
--- a/src/savedstatuses.h Sat Apr 22 21:36:31 2006 +0000 +++ b/src/savedstatuses.h Sun Apr 23 02:57:08 2006 +0000 @@ -174,25 +174,28 @@ * Returns the currently selected saved status. * * @return A pointer to the in-use GaimSavedStatus. + * This function never returns NULL. */ GaimSavedStatus *gaim_savedstatus_get_current(void); /** - * Returns the status to be used when gaim is starting up - * - * @return A pointer to the startup GaimSavedStatus. - */ -GaimSavedStatus *gaim_savedstatus_get_startup(void); - -/** * Returns the saved status that gets used when your * accounts become idle-away. * * @return A pointer to the idle-away GaimSavedStatus. + * This function never returns NULL. */ GaimSavedStatus *gaim_savedstatus_get_idleaway(void); /** + * Returns the status to be used when gaim is starting up + * + * @return A pointer to the startup GaimSavedStatus. + * This function never returns NULL. + */ +GaimSavedStatus *gaim_savedstatus_get_startup(void); + +/** * Finds a saved status with the specified title. * * @param title The name of the saved status.
