]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/control.cpp
Added some window style metadata
[wxWidgets.git] / src / os2 / control.cpp
index 3e97f4a8628aae0216343dea8b03a63766a247a9..d8c0373c11e468ac060fe10d3eeffeb1f2a6525a 100644 (file)
@@ -35,10 +35,6 @@ END_EVENT_TABLE()
 // Item members
 wxControl::wxControl()
 {
-
-#if WXWIN_COMPATIBILITY
-  m_callback = 0;
-#endif // WXWIN_COMPATIBILITY
 } // end of wxControl::wxControl
 
 bool wxControl::Create(
@@ -186,16 +182,6 @@ wxSize wxControl::DoGetBestSize() const
 
 bool wxControl::ProcessCommand(wxCommandEvent& event)
 {
-#if WXWIN_COMPATIBILITY
-    if ( m_callback )
-    {
-        (void)(*m_callback)(this, event);
-
-        return TRUE;
-    }
-    else
-#endif // WXWIN_COMPATIBILITY
-
     return GetEventHandler()->ProcessEvent(event);
 }