]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/gsockmot.c
set more event object fields for lbox dbl click events
[wxWidgets.git] / src / motif / gsockmot.c
index 797c3cff7bc88d826fef7c3a7777b9f9c893ae78..a5ec3d5c816d6d79df95c37e9efc3aecf501efbf 100644 (file)
@@ -32,7 +32,7 @@ static void _GSocket_Motif_Output(XtPointer data, int *fid,
   _GSocket_Detected_Write(socket);
 }
 
-void _GSocket_GUI_Init(GSocket *socket)
+bool _GSocket_GUI_Init(GSocket *socket)
 {
   int i;
   int *m_id;
@@ -42,6 +42,8 @@ void _GSocket_GUI_Init(GSocket *socket)
 
   m_id[0] = -1;
   m_id[1] = -1;
+
+  return TRUE;
 }
 
 void _GSocket_GUI_Destroy(GSocket *socket)
@@ -117,4 +119,9 @@ void _GSocket_Disable_Events(GSocket *socket)
   _GSocket_Uninstall_Callback(socket, GSOCK_OUTPUT);
 }
 
-#endif /* wxUSE_SOCKETS */
+#else /* !wxUSE_SOCKETS */
+
+/* some compilers don't like having empty source files */
+static int wxDummyGsockVar = 0;
+
+#endif /* wxUSE_SOCKETS/!wxUSE_SOCKETS */