Fixed some missing braces

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22799 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-08-13 14:38:32 +00:00
parent 2c6f14e1a7
commit 5bb31e3561
5 changed files with 9 additions and 17 deletions

View File

@@ -19,7 +19,7 @@ or you can write your own.
Here is an example of wxTextValidator usage.
\begin{verbatim}
wxTextCtrl *txt1 = new wxTextCtrl(this, VALIDATE_TEXT, "",
wxTextCtrl *txt1 = new wxTextCtrl(this, -1, wxT(""),
wxPoint(10, 10), wxSize(100, 80), 0,
wxTextValidator(wxFILTER_ALPHA, &g_data.m_string));
\end{verbatim}