]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/gsockpm.c
allow a - at the beginning of a menu item (would become a separator by default)
[wxWidgets.git] / src / os2 / gsockpm.c
index 9cf4ce0229ca9781983c0d2c37925da81ea7f20b..89d841e6e78a3d1cd69e7831c89f75c094b058db 100644 (file)
@@ -2,7 +2,7 @@
  * Project: GSocket (Generic Socket) for WX
  * Name:    gsockpm.c
  * Purpose: GSocket: PM part
- * Licence: The wxWindows licence
+ * Licence: The wxWidgets licence
  * CVSID:   $Id$
  * ------------------------------------------------------------------------- */
 
@@ -25,13 +25,13 @@ extern void wxAppRemoveSocketHandler(int handle);
 static void _GSocket_PM_Input(void *data)
 {
     GSocket *socket = (GSocket *) data;
-    _GSocket_Detected_Read(socket);
+    socket->m_functions->Detected_Read(socket);
 }
 
 static void _GSocket_PM_Output(void *data)
 {
     GSocket *socket = (GSocket *) data;
-    _GSocket_Detected_Write(socket);
+    socket->m_functions->Detected_Write(socket);
 }
 
 int _GSocket_GUI_Init(void)