fix typo (part of r59384)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59385 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -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 );
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user