const wxValidator& validator,
const wxString& name)
{
+ // default border for this control is none
+ if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT )
+ {
+ style |= wxBORDER_NONE;
+ }
+
if (!CreateBase(parent, id, pos, size, style, validator, name))
return FALSE;