#include "wx/scrolbar.h"
#include "wx/stattext.h"
#include "wx/statbox.h"
+ #include "wx/radiobox.h"
+ #include "wx/sizer.h"
#endif // WX_PRECOMP
#include "wx/notebook.h"
#include "wx/tabctrl.h"
-#include "wx/radiobox.h"
#include "wx/spinbutt.h"
-#include "wx/sizer.h"
IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow)
wxRemoveMacControlAssociation( this ) ;
// If we delete an item, we should initialize the parent panel,
// because it could now be invalid.
- wxWindow *parent = GetParent() ;
- if ( parent )
+ wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow);
+ if ( tlw )
{
- if (parent->GetDefaultItem() == (wxButton*) this)
- parent->SetDefaultItem(NULL);
+ if ( tlw->GetDefaultItem() == (wxButton*) this)
+ tlw->SetDefaultItem(NULL);
}
if ( (ControlHandle) m_macControl )
{
void wxControl::SetLabel(const wxString& title)
{
- m_label = wxStripMenuCodes(title) ;
+ m_label = GetLabelText(title) ;
if ( m_macControl )
{
((Rect*)outBounds)->bottom = 0;
((Rect*)outBounds)->right = 0;
- wxMacStringToPascal( wxStripMenuCodes(label) , maclabel ) ;
+ wxMacStringToPascal( GetLabelText(label) , maclabel ) ;
}
void wxControl::MacPostControlCreate()
SetSize(pos.x, pos.y, new_size.x, new_size.y);
#if wxUSE_UNICODE
- UMASetControlTitle( (ControlHandle) m_macControl , wxStripMenuCodes(m_label) , m_font.GetEncoding() ) ;
+ UMASetControlTitle( (ControlHandle) m_macControl , GetLabelText(m_label) , m_font.GetEncoding() ) ;
#endif
if ( m_macControlIsShown )