diff src/gtksavedstatuses.h @ 13014:5efbb0162f86

[gaim-migrate @ 15367] I don't expect any of this to be controversial. * Some comment and other small changes. * Changed gtkconn.c to store the list of errored accounts in a hash table instead of a glist * Added init and uninit functions to gtkconn.c. They're used to create and destroy the two hash tables used within that file. * Also use the new init and uninit functions to connect to the account deleted signal so that we clear out the old error message if we delete an account that had an error while connecting. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 23 Jan 2006 06:54:29 +0000
parents 465ddcb3e9e8
children 488619ad7ed5
line wrap: on
line diff
--- a/src/gtksavedstatuses.h	Mon Jan 23 05:50:32 2006 +0000
+++ b/src/gtksavedstatuses.h	Mon Jan 23 06:54:29 2006 +0000
@@ -48,7 +48,17 @@
 void gaim_gtk_status_editor_show(GaimSavedStatus *status);
 
 /**
- * Returns the gtkstatus handle.
+ * Creates a dropdown menu of saved statuses and calls a callback
+ * when one is selected
+ *
+ * @param status   The default saved_status to show as 'selected'
+ * @param callback The callback to call when the selection changes
+ * @return         The menu widget
+ */
+GtkWidget *gaim_gtk_status_menu(GaimSavedStatus *status, GCallback callback);
+
+/**
+ * Returns the GTK+ status handle.
  *
  * @return The handle to the GTK+ status system.
  */
@@ -64,14 +74,4 @@
  */
 void gaim_gtk_status_uninit(void);
 
-/**
- * Creates a dropdown menu of saved statuses and calls a callback
- * when one is selected
- *
- * @param status   The default saved_status to show as 'selected'
- * @param callback The callback to call when the selection changes
- * @return         The menu widget
- */
-GtkWidget *gaim_gtk_status_menu(GaimSavedStatus *status, GCallback callback);
-
 #endif /* _GAIM_GTKSAVEDSTATUSES_H_ */