Applied patch [ 598173 ] Fixes erroneous logging notebook sample

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16648 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-08-21 15:58:49 +00:00
parent 3f148eb67a
commit 44e1a03ff3

View File

@@ -525,7 +525,7 @@ void MyFrame::OnNotebook(wxNotebookEvent& event)
static int s_numNotebookEvents = 0; static int s_numNotebookEvents = 0;
wxLogMessage(wxT("Notebook event #%d: %s (%d)"), wxLogMessage(wxT("Notebook event #%d: %s (%d)"),
s_numNotebookEvents++, str, eventType); s_numNotebookEvents++, str.c_str(), eventType);
m_text->SetInsertionPointEnd(); m_text->SetInsertionPointEnd();