From: Luke S. <lsc...@us...> - 2002-10-11 02:10:11
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv13874/src Modified Files: conversation.c Log Message: the proper fix to the parse error the last commit resolved. Index: conversation.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/conversation.c,v retrieving revision 1.389 retrieving revision 1.390 diff -u -d -r1.389 -r1.390 --- conversation.c 11 Oct 2002 02:05:47 -0000 1.389 +++ conversation.c 11 Oct 2002 02:10:08 -0000 1.390 @@ -839,7 +839,6 @@ { int pos; gboolean key_is_typing = TRUE; - GtkWidget *notebook = NULL; if (event->keyval == GDK_Escape) { key_is_typing = FALSE; @@ -1090,6 +1089,7 @@ } else if (((!c->is_chat && (im_options & OPT_IM_ONE_WINDOW)) || (c->is_chat && (chat_options & OPT_CHAT_ONE_WINDOW))) && (event->state & GDK_MOD1_MASK) && (event->keyval > '0') && (event->keyval <= '9')) { + GtkWidget *notebook = NULL; key_is_typing = FALSE; notebook = (c->is_chat ? chat_notebook : convo_notebook); gtk_notebook_set_page(GTK_NOTEBOOK(notebook), event->keyval - '1'); |