Relocate "Run test" menu items in the menu of propgrid sample.

Move "Run test" menu items from "Try These!" menu to "File" menu in propgrid sample. It seems to be more adequate location for such action items.
This commit is contained in:
Artur Wieczorek
2015-04-04 00:42:31 +02:00
parent 5158ce4944
commit 1638644ea6

View File

@@ -2109,12 +2109,12 @@ FormMain::FormMain(const wxString& title, const wxPoint& pos, const wxSize& size
menuTry->Append(ID_SETCOLUMNS, wxT("Set Number of Columns") );
menuTry->AppendSeparator();
menuTry->Append(ID_TESTXRC, wxT("Display XRC sample") );
menuTry->AppendSeparator();
menuTry->Append(ID_RUNTESTFULL, wxT("Run Tests (full)") );
menuTry->Append(ID_RUNTESTPARTIAL, wxT("Run Tests (fast)") );
menuFile->Append(ID_RUNMINIMAL, wxT("Run Minimal Sample") );
menuFile->AppendSeparator();
menuFile->Append(ID_RUNTESTFULL, wxT("Run Tests (full)") );
menuFile->Append(ID_RUNTESTPARTIAL, wxT("Run Tests (fast)") );
menuFile->AppendSeparator();
menuFile->Append(ID_QUIT, wxT("E&xit\tAlt-X"), wxT("Quit this program") );
// Now append the freshly created menu to the menu bar...