removed #if KEY_wxList_DEPRECATED: as KEY_wxList_DEPRECATED is not defined anywhere, this doesn't do anything but provoke gcc warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35156 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-08-08 21:51:32 +00:00
parent de1b0aeb6c
commit 1fc0b5afe7
3 changed files with 0 additions and 88 deletions

View File

@@ -628,35 +628,6 @@ wxMAC_DEFINE_PROC_GETTER( ControlActionUPP , wxMacLiveScrollbarActionProc ) ;
// implementation
// ===========================================================================
#if KEY_wxList_DEPRECATED
wxList wxWinMacControlList(wxKEY_INTEGER);
wxWindow *wxFindControlFromMacControl(ControlRef inControl )
{
wxNode *node = wxWinMacControlList.Find((long)inControl);
if (!node)
return NULL;
return (wxControl *)node->GetData();
}
void wxAssociateControlWithMacControl(ControlRef inControl, wxWindow *control)
{
// adding NULL ControlRef is (first) surely a result of an error and
// (secondly) breaks native event processing
wxCHECK_RET( inControl != (ControlRef) NULL, wxT("attempt to add a NULL WindowRef to window list") );
if ( !wxWinMacControlList.Find((long)inControl) )
wxWinMacControlList.Append((long)inControl, control);
}
void wxRemoveMacControlAssociation(wxWindow *control)
{
// remove all associations pointing to us
while ( wxWinMacControlList.DeleteObject(control) )
{}
}
#else
WX_DECLARE_HASH_MAP(ControlRef, wxWindow*, wxPointerHash, wxPointerEqual, MacControlMap);
static MacControlMap wxWinMacControlList;
@@ -699,7 +670,6 @@ void wxRemoveMacControlAssociation(wxWindow *control)
}
}
}
#endif // deprecated wxList
// ----------------------------------------------------------------------------
// constructors and such