Fix accidental changes made to menu sample

Only German translations were supposed to be updated according to
8437c6a443 but it also made test changes
to samples/menu/menu.cpp, revert those.
This commit is contained in:
Dimitri Schoolwerth 2016-06-14 03:36:53 +02:00
parent 42fe8f889e
commit 3c4e29e0da

View File

@ -531,11 +531,8 @@ MyFrame::MyFrame()
fileMenu->AppendSubMenu(stockSubMenu, wxT("&Standard items demo"));
#if USE_LOG_WINDOW
wxMenu* sub = new wxMenu;
sub->Append(wxID_OPEN);
wxMenuItem *item = new wxMenuItem(fileMenu, Menu_File_ClearLog,
wxT("Clear &log\tCtrl-L"),
"", wxITEM_NORMAL, sub);
wxT("Clear &log\tCtrl-L"));
item->SetBitmap(copy_xpm);
fileMenu->Append(item);
fileMenu->AppendSeparator();