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:
@@ -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
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user