PreCreation( parent, id, pos, size, style, name );
bool bMultiLine = (style & wxTE_MULTILINE) != 0;
- if ( bMultiLine )
+ if ( bMultiLine )
{
// a multi-line edit control: create a vertical scrollbar by default and
// horizontal if requested
gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp );
};
- if (style & wxREADONLY)
+ if (style & wxTE_READONLY)
{
}
else
-
+