]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/gsockmot.c
removed erroneous return type from a membersection (patch 905562)
[wxWidgets.git] / src / motif / gsockmot.c
index f442a508dcfe9fe93904bafc0b47ef8561c35f12..e4904f6610c70c0852149e2d271a89f01bdf1638 100644 (file)
@@ -22,7 +22,7 @@ static void _GSocket_Motif_Input(XtPointer data, int *fid,
 {
   GSocket *socket = (GSocket *)data;
 
-  _GSocket_Detected_Read(socket);
+  socket->m_functions->Detected_Read(socket);
 }
 
 static void _GSocket_Motif_Output(XtPointer data, int *fid,
@@ -30,10 +30,19 @@ static void _GSocket_Motif_Output(XtPointer data, int *fid,
 {
   GSocket *socket = (GSocket *)data;
 
-  _GSocket_Detected_Write(socket);
+  socket->m_functions->Detected_Write(socket);
 }
 
-int _GSocket_GUI_Init(GSocket *socket)
+int _GSocket_GUI_Init(void)
+{
+    return 1;
+}
+
+void _GSocket_GUI_Cleanup(void)
+{
+}
+
+int _GSocket_GUI_Init_Socket(GSocket *socket)
 {
   int *m_id;
 
@@ -46,7 +55,7 @@ int _GSocket_GUI_Init(GSocket *socket)
   return TRUE;
 }
 
-void _GSocket_GUI_Destroy(GSocket *socket)
+void _GSocket_GUI_Destroy_Socket(GSocket *socket)
 {
   free(socket->m_gui_dependent);
 }