No real changes, just fix typos in the ownerdrw sample.

s/Cheked/Checked/g

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2010-04-21 14:40:42 +00:00
parent c71238020c
commit b5415496c3

View File

@ -206,7 +206,7 @@ void OwnerDrawnFrame::InitMenu()
drawn_menu->AppendSeparator();
pItem = new wxMenuItem(drawn_menu, Menu_Drawn2, wxT("&Cheked item"),
pItem = new wxMenuItem(drawn_menu, Menu_Drawn2, wxT("&Checked item"),
wxT("check/uncheck me!"), wxITEM_CHECK);
drawn_menu->Append(pItem);
drawn_menu->Check(Menu_Drawn2, true);
@ -232,7 +232,7 @@ void OwnerDrawnFrame::InitMenu()
native_menu->AppendSeparator();
pItem = new wxMenuItem(native_menu, Menu_Native2, wxT("&Cheked item"),
pItem = new wxMenuItem(native_menu, Menu_Native2, wxT("&Checked item"),
wxT("check/uncheck me!"), wxITEM_CHECK);
native_menu->Append(pItem);
native_menu->Check(Menu_Native2, true);