diff src/gtkutils.c @ 5676:dae79aefac8d

[gaim-migrate @ 6094] I've been meaning to do this for a LONG time. The conversation API now follows the naming convention of the rest of the new APIs. I'll get some g_return_*_if_fail() checks in there soon. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 02 Jun 2003 21:51:06 +0000
parents 84221116b28e
children e43e1b8dca8b
line wrap: on
line diff
--- a/src/gtkutils.c	Mon Jun 02 21:14:50 2003 +0000
+++ b/src/gtkutils.c	Mon Jun 02 21:51:06 2003 +0000
@@ -77,7 +77,7 @@
 }
 
 static void
-gaim_gtk_remove_tags(struct gaim_gtk_conversation *gtkconv, const char *tag)
+gaim_gtk_remove_tags(GaimGtkConversation *gtkconv, const char *tag)
 {
 	GtkTextIter start, end, m_start, m_end;
 
@@ -111,7 +111,7 @@
 }
 
 void
-gaim_gtk_surround(struct gaim_gtk_conversation *gtkconv,
+gaim_gtk_surround(GaimGtkConversation *gtkconv,
 				  const char *pre, const char *post)
 {
 	GtkTextIter start, end;
@@ -201,7 +201,7 @@
 }
 
 void
-gaim_gtk_advance_past(struct gaim_gtk_conversation *gtkconv,
+gaim_gtk_advance_past(GaimGtkConversation *gtkconv,
 					  const char *pre, const char *post)
 {
 	GtkTextIter current_pos, start, end;
@@ -222,7 +222,7 @@
 }
 
 void
-gaim_gtk_set_font_face(struct gaim_gtk_conversation *gtkconv,
+gaim_gtk_set_font_face(GaimGtkConversation *gtkconv,
 					   const char *font)
 {
 	char *pre_fontface;
@@ -247,7 +247,7 @@
 
 static int
 des_save_icon(GtkObject *obj, GdkEvent *e,
-			  struct gaim_gtk_conversation *gtkconv)
+			  GaimGtkConversation *gtkconv)
 {
 	gtk_widget_destroy(gtkconv->u.im->save_icon);
 	gtkconv->u.im->save_icon = NULL;
@@ -256,9 +256,9 @@
 }
 
 static void
-do_save_icon(GtkObject *obj, struct gaim_conversation *c)
+do_save_icon(GtkObject *obj, GaimConversation *c)
 {
-	struct gaim_gtk_conversation *gtkconv;
+	GaimGtkConversation *gtkconv;
 	FILE *file;
 	const char *f;
 	
@@ -290,7 +290,7 @@
 }
 
 static void
-cancel_save_icon(GtkObject *obj, struct gaim_gtk_conversation *gtkconv)
+cancel_save_icon(GtkObject *obj, GaimGtkConversation *gtkconv)
 {
 	gtk_widget_destroy(gtkconv->u.im->save_icon);
 	gtkconv->u.im->save_icon = NULL;
@@ -298,9 +298,9 @@
 
 
 void
-gaim_gtk_save_icon_dialog(GtkObject *obj, struct gaim_conversation *conv)
+gaim_gtk_save_icon_dialog(GtkObject *obj, GaimConversation *conv)
 {
-	struct gaim_gtk_conversation *gtkconv;
+	GaimGtkConversation *gtkconv;
 	char buf[BUF_LEN];
 
 	if (conv == NULL || gaim_conversation_get_type(conv) != GAIM_CONV_IM)