src/gtkconv.c

changeset 5860
27f5a177b7fc
parent 5858
1bc64d957067
child 5872
754c63f29b77
--- a/src/gtkconv.c	Sat Jun 14 06:06:40 2003 +0000
+++ b/src/gtkconv.c	Sat Jun 14 06:38:30 2003 +0000
@@ -2016,7 +2016,8 @@
 
 	conv = gaim_window_get_active_conversation(win);
 
-	g_return_val_if_fail(conv != NULL, FALSE);
+	if (conv == NULL)
+		return FALSE;
 
 	account = gaim_conversation_get_account(conv);
 	gtkwin  = GAIM_GTK_WINDOW(win);
@@ -3682,7 +3683,6 @@
 
 	if (gaim_window_get_conversation_count(win) == 1)
 		g_timeout_add(0, (GSourceFunc)update_send_as_selection, win);
-
 }
 
 static void

mercurial