]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/gsockgtk.c
//... => /* ... */
[wxWidgets.git] / src / gtk / gsockgtk.c
index e462a6aecea7c2acd872ba186e5dbea2a8e65f1a..8677ef3626e627a2280faedea17fd9f30e65ed9b 100644 (file)
 #if wxUSE_SOCKETS
 
 #include <stdlib.h>
-#include <gdk/gdk.h>
-#include <glib.h>
-#include <wx/gsocket.h>
-#include "../unix/gsockunx.h"
+#include "gdk/gdk.h"
+#include "glib.h"
+#include "wx/gsocket.h"
+#include "wx/unix/gsockunx.h"
 
 void _GSocket_GDK_Input(gpointer data, gint source, GdkInputCondition condition)
 {
   GSocket *socket = (GSocket *)data;
 
-  switch (condition) {
-  case GDK_INPUT_READ:
+  if (condition & GDK_INPUT_READ)
     _GSocket_Detected_Read(socket);
-    break;
-  case GDK_INPUT_WRITE:
+  if (condition & GDK_INPUT_WRITE)
     _GSocket_Detected_Write(socket);
-    break;
-  default:
-    break;
-  } 
 }
 
 void _GSocket_GUI_Init(GSocket *socket)