changeset 7930:68f70cf074d0

[gaim-migrate @ 8601] And these two files, too. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 26 Dec 2003 19:07:55 +0000
parents 94a90bf90f32
children 2a781d4178ba
files src/conversation.c src/gtkconv.h
diffstat 2 files changed, 10 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/conversation.c	Fri Dec 26 19:07:19 2003 +0000
+++ b/src/conversation.c	Fri Dec 26 19:07:55 2003 +0000
@@ -1484,6 +1484,12 @@
 		ops->update_progress(conv, percent);
 }
 
+/*
+ * TODO: Need to make sure calls to this function happen in the core 
+ * instead of the UI.  That way UIs have less work to do, and the 
+ * core/UI split is cleaner.  Also need to make sure this is called 
+ * when chats are added/removed from the blist.
+ */
 void
 gaim_conversation_update(GaimConversation *conv, GaimConvUpdateType type)
 {
--- a/src/gtkconv.h	Fri Dec 26 19:07:19 2003 +0000
+++ b/src/gtkconv.h	Fri Dec 26 19:07:55 2003 +0000
@@ -93,7 +93,6 @@
 {
 	GtkWidget *warn;
 	GtkWidget *block;
-	GtkWidget *add;
 	GtkWidget *sep1;
 	GtkWidget *sep2;
 	GtkWidget *check;
@@ -142,9 +141,11 @@
 	GtkTextBuffer *entry_buffer;
 	GtkWidget *entry;
 
-	GtkWidget *send;
+	GtkWidget *add;
+	GtkWidget *remove;
 	GtkWidget *info;
-	GtkWidget *close;
+	GtkWidget *send;
+	GtkWidget *close; /* "x" on the tab */
 	GtkWidget *icon;
 	GtkWidget *tab_label;
 	GtkWidget *menu_icon;