This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [gui][PATCH] Add FIXME comment to window peer


On Fri, 2004-04-23 at 17:31, Thomas Fitzsimmons wrote:
> Hi,
> 
> I committed this to java-gui-branch.

Hi,

I changed this patch to use C-style comments:

2004-04-23  Thomas Fitzsimmons  <fitzsim@redhat.com>

	* gnu_java_awt_peer_gtk_GtkWindowPeer.c: Change FIXME comment to
	C-style.


Index: jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c
===================================================================
RCS file: /cvs/gcc/gcc/libjava/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c,v
retrieving revision 1.24.2.2
diff -u -r1.24.2.2 gnu_java_awt_peer_gtk_GtkWindowPeer.c
--- jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c	23 Apr 2004 21:30:13 -0000	1.24.2.2
+++ jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c	23 Apr 2004 21:36:42 -0000
@@ -46,11 +46,11 @@
 
 static int filter_added = 0;
 
-// FIXME: this function is needed to work around double-activation
-// that occurs with metacity and GTK.  See
-// http://bugzilla.gnome.org/show_bug.cgi?id=140977 for details.  Owen
-// says filtering protocol messages will break future versions of GTK.
-// Once the bug is fixed, we'll remove this logic.
+/* FIXME: this function is needed to work around double-activation
+   that occurs with metacity and GTK.  See
+   http://bugzilla.gnome.org/show_bug.cgi?id=140977 for details.  Owen
+   says filtering protocol messages will break future versions of
+   GTK. Once the bug is fixed, we'll remove this logic. */
 static GdkFilterReturn window_wm_protocols_filter (GdkXEvent *xev,
                                                    GdkEvent  *event,
                                                    gpointer   data);



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]