]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dialup.h
tons of wxFTP fixes and compilation fix for wxBase
[wxWidgets.git] / include / wx / dialup.h
index 182374aa1598b46219f15d34293c60b15ab7c9e1..d8615927392aeb17739cd7c134b10bcd120ed262 100644 (file)
@@ -24,7 +24,7 @@
 
 class WXDLLEXPORT wxArrayString;
 
-extern const wxChar *wxEmptyString;
+WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
 
 #define WXDIALUP_MANAGER_DEFAULT_BEACONHOST  wxT("www.yahoo.com")
 
@@ -177,12 +177,13 @@ public:
 };
 
 // the type of dialup event handler function
-typedef void (wxObject::*wxDialUpEventFunction)(wxDialUpEvent&);
+typedef void (wxEvtHandler::*wxDialUpEventFunction)(wxDialUpEvent&);
 
 // macros to catch dialup events
 #define EVT_DIALUP_CONNECTED(func) { wxEVT_DIALUP_CONNECTED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxDialUpEventFunction) & func, NULL},
 #define EVT_DIALUP_DISCONNECTED(func) { wxEVT_DIALUP_DISCONNECTED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxDialUpEventFunction) & func, NULL},
 
+
 #endif // wxUSE_DIALUP_MANAGER
 
 #endif // _WX_NET_H