From: Francesco Montorsi Date: Fri, 6 Mar 2009 20:45:56 +0000 (+0000) Subject: fix typo (part of r59384) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/caa4f8ff5ca4f877542d1012dbcd8ad33744a095?ds=inline fix typo (part of r59384) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59385 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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 ); }