]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/socket.h
add IsOk() to all classes having Ok() method (patch 1570985)
[wxWidgets.git] / include / wx / socket.h
index 401768641e9cc0faa5a033f75ab7ed0758277a35..ee2578f3c213ff08ca2901e1c37fae0a70ffa450 100644 (file)
@@ -108,7 +108,8 @@ public:
   bool Destroy();
 
   // state
-  inline bool Ok() const { return (m_socket != NULL); };
+  inline bool Ok() const { return IsOk(); }
+  inline bool IsOk() const { return (m_socket != NULL); };
   inline bool Error() const { return m_error; };
   inline bool IsConnected() const { return m_connected; };
   inline bool IsData() { return WaitForRead(0, 0); };