[Xorg-commit] xc/programs/Xserver/hw/xwin winclipboardxevents.c,1.1.4.1.2.2,1.1.4.1.2.3

Harold L Hunt II xorg-commit at pdx.freedesktop.org
Thu Jan 8 08:37:46 EET 2004


Committed by: harold

Update of /cvs/xorg/xc/programs/Xserver/hw/xwin
In directory pdx:/tmp/cvs-serv17569

Modified Files:
      Tag: CYGWIN
	winclipboardxevents.c 
Log Message:
Change return FALSE to break... FALSE means that the clipboard thread should shutdown.

Index: winclipboardxevents.c
===================================================================
RCS file: /cvs/xorg/xc/programs/Xserver/hw/xwin/winclipboardxevents.c,v
retrieving revision 1.1.4.1.2.2
retrieving revision 1.1.4.1.2.3
diff -u -d -r1.1.4.1.2.2 -r1.1.4.1.2.3
--- winclipboardxevents.c	8 Jan 2004 05:10:32 -0000	1.1.4.1.2.2
+++ winclipboardxevents.c	8 Jan 2004 06:37:44 -0000	1.1.4.1.2.3
@@ -377,7 +377,7 @@
 		  ErrorF ("winClipboardFlushXEvents - SelectionNotify - "
 			  "XA_STRING\n");
 #endif
-		  return FALSE;
+		  break;
 		}
 	      else if (event.xselection.target == atomUTF8String)
 		{
@@ -400,7 +400,7 @@
 
 		  /* Process the ConvertSelection event */
 		  XFlush (pDisplay);
-		  return FALSE;
+		  break;
 		}
 	      else if (event.xselection.target == atomCompoundText)
 		{
@@ -423,13 +423,13 @@
 
 		  /* Process the ConvertSelection event */
 		  XFlush (pDisplay);
-		  return FALSE;
+		  break;
 		}
 	      else
 		{
 		  ErrorF ("winClipboardFlushXEvents - SelectionNotify - "
 			  "Unknown format.  Cannot request conversion.\n");
-		  return FALSE;
+		  break;
 		}
 	    }
 





More information about the xorg-commit mailing list