changeset 10027:5151c6788f3d

[gaim-migrate @ 10963] make the c++ folk a little happier committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Wed, 15 Sep 2004 13:11:44 +0000
parents 341d89fa78e5
children 1ececa0e7072
files src/roomlist.c src/roomlist.h
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/roomlist.c	Wed Sep 15 03:25:37 2004 +0000
+++ b/src/roomlist.c	Wed Sep 15 13:11:44 2004 +0000
@@ -57,8 +57,8 @@
 	list->fields = NULL;
 	list->ref = 1;
 
-	if (ops && ops->new)
-		ops->new(list);
+	if (ops && ops->create)
+		ops->create(list);
 
 	return list;
 }
--- a/src/roomlist.h	Wed Sep 15 03:25:37 2004 +0000
+++ b/src/roomlist.h	Wed Sep 15 13:11:44 2004 +0000
@@ -100,7 +100,7 @@
  */
 struct _GaimRoomlistUiOps {
 	void (*show_with_account)(GaimAccount *account); /**< Force the ui to pop up a dialog and get the list */
-	void (*new)(GaimRoomlist *list); /**< A new list was created. */
+	void (*create)(GaimRoomlist *list); /**< A new list was created. */
 	void (*set_fields)(GaimRoomlist *list, GList *fields); /**< Sets the columns. */
 	void (*add_room)(GaimRoomlist *list, GaimRoomlistRoom *room); /**< Add a room to the list. */
 	void (*in_progress)(GaimRoomlist *list, gboolean flag); /**< Are we fetching stuff still? */