Since wxREADONLY has disappeared, I had to change to wxTE_READONLY

in order to compile.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@498 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
1998-08-10 22:22:25 +00:00
parent e8cd8b1b12
commit 5796ed400c
2 changed files with 6 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ bool wxTextCtrl::Create( wxWindow *parent, wxWindowID id, const wxString &value,
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
@@ -123,7 +123,7 @@ bool wxTextCtrl::Create( wxWindow *parent, wxWindowID id, const wxString &value,
gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp );
};
if (style & wxREADONLY)
if (style & wxTE_READONLY)
{
}
else
@@ -394,4 +394,4 @@ GtkWidget* wxTextCtrl::GetConnectWidget(void)