Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv3638/src
Modified Files:
conversation.c
Log Message:
fixes a warning in conversations. thanks deryni
Index: conversation.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/conversation.c,v
retrieving revision 1.421
retrieving revision 1.422
diff -u -d -r1.421 -r1.422
--- conversation.c 26 Oct 2002 21:04:35 -0000 1.421
+++ conversation.c 28 Oct 2002 02:39:50 -0000 1.422
@@ -2048,9 +2048,10 @@
g_list_index(chats, c) + offs)
unhighlight = 1;
} else {
- if (gtk_notebook_get_current_page(GTK_NOTEBOOK(convo_notebook)) ==
- g_list_index(conversations, c))
- unhighlight = 1;
+ if (im_options & OPT_IM_ONE_WINDOW)
+ if (gtk_notebook_get_current_page(GTK_NOTEBOOK(convo_notebook)) ==
+ g_list_index(conversations, c))
+ unhighlight = 1;
}
if (!unhighlight && flags & WFLAG_NICK) {
|