// Modified by:
// Created: 15.12.00
// RCS-ID: $Id$
-// Copyright: (c) 2000 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
+// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
SetBitmapSelected(bmpPressed);
SetBitmapDisabled(bmpDisabled);
- SetSize(bmpNormal.GetWidth(), bmpNormal.GetHeight());
+// SetSize(bmpNormal.GetWidth(), bmpNormal.GetHeight());
}
protected:
m_popup = (wxComboPopup *)NULL;
m_winPopup = (wxPopupComboWindow *)NULL;
m_isPopupShown = FALSE;
+ m_btn = NULL;
+ m_text = NULL;
}
bool wxComboControl::Create(wxWindow *parent,
if ( !wxControl::Show(show) )
return FALSE;
- m_btn->Show(show);
- m_text->Show(show);
+ if (m_btn)
+ m_btn->Show(show);
+
+ if (m_text)
+ m_text->Show(show);
return TRUE;
}