Fix some typos in the samples.

Mostly in the comments, but also a couple in the user-visible strings.
This commit is contained in:
orbitcowboy
2015-05-21 10:45:48 +02:00
committed by Vadim Zeitlin
parent d30c075a22
commit 2afddd5e22
3 changed files with 8 additions and 8 deletions

View File

@@ -146,7 +146,7 @@ void FormMain::OnDumpList( wxCommandEvent& WXUNUSED(event) )
{
wxVariant& a = v[n];
t.Printf(wxT(" atribute %i: name=\"%s\" (type=\"%s\" value=\"%s\")\n"),(int)n,
t.Printf(wxT(" attribute %i: name=\"%s\" (type=\"%s\" value=\"%s\")\n"),(int)n,
a.GetName().c_str(),a.GetType().c_str(),a.GetString().c_str());
text += t;
}