ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm/src chat_window.c,1.68,1.69


From: Edward L. Haletky <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/src chat_window.c,1.68,1.69
Date: Fri, 28 Mar 2003 14:24:12 -0500

Update of /cvsroot/ayttm/ayttm/src
In directory subversions:/tmp/cvs-serv24456/src

Modified Files:
        chat_window.c 
Log Message:


Updates for MINGW32 GUI issues
Updates to remove Yahoo async connect specifically for MINGW32 only


Index: chat_window.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/chat_window.c,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- chat_window.c       26 Mar 2003 13:17:59 -0000      1.68
+++ chat_window.c       28 Mar 2003 19:24:10 -0000      1.69
@@ -542,6 +542,17 @@
        cw_put_message(data, link_message, iGetLocalPref("do_ignore_back"), 
iGetLocalPref("do_ignore_fore"), iGetLocalPref("do_ignore_font"));
        cw_put_message(data, "<br>", 0, 0, 0);
 
+#ifdef __MINGW32__
+        /* Force a redraw */
+        {
+              GdkRectangle update_rect;
+              update_rect.x = update_rect.y = 0;
+              update_rect.width = data->chat->allocation.width;
+              update_rect.height = data->chat->allocation.height;
+              gtk_widget_draw(data->chat,&update_rect);
+        }
+#endif
+
        /* If an away message had been sent to this person, reset the away 
message tracker */
        /* It's probably faster to just do the assignment all the time--the test
        is there for code clarity. */





reply via email to

[Prev in Thread] Current Thread [Next in Thread]