]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/socket.cpp
When saving the editable state, use the real state (m_editable)
[wxWidgets.git] / src / common / socket.cpp
index 2c44f0dd13a4f9b22021d7d5987b88f7bfd19d52..0136da4a2063f1a210d6c2e61accc27176fea321 100644 (file)
@@ -6,7 +6,7 @@
 // Copyright:  (C) 1999-1997, Guilhem Lavaux
 //             (C) 2000-1999, Guillermo Rodriguez Garcia
 // RCS_ID:     $Id$
-// License:    see wxWindows license
+// License:    see wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ==========================================================================
@@ -834,11 +834,11 @@ void wxSocketBase::RestoreState()
   wxNode *node;
   wxSocketState *state;
 
-  node = m_states.Last();
+  node = m_states.GetLast();
   if (!node)
     return;
 
-  state = (wxSocketState *)node->Data();
+  state = (wxSocketState *)node->GetData();
 
   m_flags      = state->m_flags;
   m_notify     = state->m_notify;