]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/dialup.cpp
non-PCH build fix (according to Tinderbox).
[wxWidgets.git] / src / unix / dialup.cpp
index b71a5cc8a41cfc6e3f9220a4cdc6cca367725192..0f187a106b977e4c280ff1708f94f9cd3d611aa7 100644 (file)
@@ -23,9 +23,9 @@
     #include "wx/event.h"
     #include "wx/app.h"
     #include "wx/utils.h"
+    #include "wx/timer.h"
 #endif // !PCH
 
-#include "wx/timer.h"
 #include "wx/filefn.h"
 #include "wx/ffile.h"
 #include "wx/process.h"
@@ -73,7 +73,7 @@ class WXDLLEXPORT wxDialUpManagerImpl : public wxDialUpManager
 {
 public:
    wxDialUpManagerImpl();
-   ~wxDialUpManagerImpl();
+   virtual ~wxDialUpManagerImpl();
 
    /** Could the dialup manager be initialized correctly? If this function
        returns false, no other functions will work neither, so it's a good idea
@@ -580,9 +580,11 @@ wxDialUpManagerImpl::NetConnection wxDialUpManagerImpl::CheckConnect()
    }
    else // failed to connect
    {
+#ifdef ENETUNREACH
        if(errno == ENETUNREACH)
           return Net_No; // network is unreachable
        else
+#endif
           return Net_Unknown; // connect failed, but don't know why
    }
 }