remove Sun CC warning

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7492 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-05-26 10:30:08 +00:00
parent 31fb9a5779
commit d168273d36

View File

@@ -156,7 +156,9 @@ public:
virtual void SetConnectCommand(const wxString &command, const wxString &hupcmd)
{ m_ConnectCommand = command; m_HangUpCommand = hupcmd; }
private:
//private: -- Sun CC 4.2 objects to using NetConnection enum as the return
// type if it is declared private
// the possible results of testing for Online() status
enum NetConnection
{
@@ -174,6 +176,7 @@ private:
NetDevice_LAN = 0x0004 // a network card
};
private:
// the current status
NetConnection m_IsOnline;