From: Vadim Zeitlin Date: Wed, 21 Sep 2011 15:08:06 +0000 (+0000) Subject: Replace erroneous comma with a semicolon in keyboard sample. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d7b3992a5f92ab87a26aeb77cbee2184f0e5432c Replace erroneous comma with a semicolon in keyboard sample. Fix typo in the sample, comma was used instead of a semicolon. The code still worked correctly but make it look correctly too now. Closes #13453. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69179 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/keyboard/keyboard.cpp b/samples/keyboard/keyboard.cpp index cdde7c350c..25907b5a4c 100644 --- a/samples/keyboard/keyboard.cpp +++ b/samples/keyboard/keyboard.cpp @@ -132,7 +132,7 @@ MyFrame::MyFrame(const wxString& title) SetMenuBar(menuBar); m_inputWin = new wxWindow(this, wxID_ANY, wxDefaultPosition, wxSize(-1, 50), - wxRAISED_BORDER), + wxRAISED_BORDER); m_inputWin->SetBackgroundColour(*wxBLUE); wxTextCtrl *headerText = new wxTextCtrl(this, wxID_ANY, "",