2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_lib_new_component.h>
|
2009-10-08 13:19:28 +00:00
|
|
|
|
|
|
|
DIALOG_LIB_NEW_COMPONENT::DIALOG_LIB_NEW_COMPONENT( wxWindow* parent ) :
|
|
|
|
DIALOG_LIB_NEW_COMPONENT_BASE( parent )
|
|
|
|
{
|
2009-10-30 19:26:25 +00:00
|
|
|
/* Required to make escape key work correctly in wxGTK. */
|
|
|
|
m_sdbSizerOK->SetFocus();
|
2010-11-20 21:59:00 +00:00
|
|
|
m_sdbSizerOK->SetDefault();
|
2009-10-08 13:19:28 +00:00
|
|
|
}
|