From caa4f8ff5ca4f877542d1012dbcd8ad33744a095 Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Fri, 6 Mar 2009 20:45:56 +0000 Subject: [PATCH] fix typo (part of r59384) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59385 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/dataview/mymodels.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/dataview/mymodels.cpp b/samples/dataview/mymodels.cpp index 85ece92c1a..379c338bb0 100644 --- a/samples/dataview/mymodels.cpp +++ b/samples/dataview/mymodels.cpp @@ -43,7 +43,7 @@ MyMusicTreeModel::MyMusicTreeModel() // setup pop music m_pop = new MyMusicTreeModelNode( m_root, "Pop music" ); m_pop->Append( - new MyMusicTreeModelNode( m_pop, "You are not alone"), "Michael Jackson", 1995 ) ); + new MyMusicTreeModelNode( m_pop, "You are not alone", "Michael Jackson", 1995 ) ); m_pop->Append( new MyMusicTreeModelNode( m_pop, "Take a bow", "Madonna", 1994 ) ); m_root->Append( m_pop ); @@ -329,7 +329,7 @@ MyListModel::MyListModel() : for (unsigned int i = 0; i < 100; i++) { wxString str; - str.Printf( "real row %d"), i ); + str.Printf( "real row %d", i ); m_array.Add( str ); } -- 2.47.2