changeset 3275:6190cf2c95a9

[gaim-migrate @ 3293] For plugins. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Tue, 28 May 2002 08:00:27 +0000
parents 572b9d648c94
children a334dada69c3
files ChangeLog src/conversation.c src/ui.h
diffstat 3 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat May 25 19:11:34 2002 +0000
+++ b/ChangeLog	Tue May 28 08:00:27 2002 +0000
@@ -18,6 +18,8 @@
 	  light-bulb" icon is shown and the error status is
 	  available via "Get Away Msg"  (Thanks and a tip o'
 	  the hat to Christian Hammond for the graphic)
+	* Conversation struct has pointer to toolbar (thanks Brent
+	  Priddy)
 
 version 0.58 (05/13/2002):
 	* Bulgarian translation added (Thanks, Igel Itzo)
--- a/src/conversation.c	Sat May 25 19:11:34 2002 +0000
+++ b/src/conversation.c	Tue May 28 08:00:27 2002 +0000
@@ -2273,6 +2273,7 @@
 	gdk_pixmap_unref(speaker_i);
 	gdk_pixmap_unref(image_i);
 
+	c->toolbar = toolbar;
 	c->bold = bold;
 	c->strike = strike;
 	c->italic = italic;
--- a/src/ui.h	Sat May 25 19:11:34 2002 +0000
+++ b/src/ui.h	Tue May 28 08:00:27 2002 +0000
@@ -109,6 +109,7 @@
 	/* stuff used for both IM and chat */
 	GtkWidget *window;
 	char name[80];
+	GtkWidget *toolbar;
 	GtkWidget *text;
 	GtkWidget *entry;
 	GtkWidget *italic;