]> git.saurik.com Git - wxWidgets.git/commitdiff
fix typo (part of r59384)
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Fri, 6 Mar 2009 20:45:56 +0000 (20:45 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Fri, 6 Mar 2009 20:45:56 +0000 (20:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59385 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/dataview/mymodels.cpp

index 85ece92c1a97da5664fd34ea69b2a27f4efe2e0d..379c338bb07a0c20581ece7db5564f8ccc87f490 100644 (file)
@@ -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 );
     }