Minor tweaks

This commit is contained in:
Timothy Warren 2015-03-31 13:42:41 -04:00
parent ef5228e443
commit 6d87f0a004
2 changed files with 4 additions and 6 deletions

View File

@ -31,7 +31,7 @@
<Add option="`wx-config --cflags`" />
</Compiler>
<Linker>
<Add option="`wx-config --libs`" />
<Add option="`wx-config --libs all`" />
</Linker>
<Unit filename="TyroApp.cpp" />
<Unit filename="TyroApp.h" />

View File

@ -56,11 +56,11 @@ TyroFrame::TyroFrame(wxFrame *frame, const wxString& title)
wxMenu* editMenu = new wxMenu(_T(""));
fileMenu->Append(wxID_EXIT, _("&Quit\tAlt-F4"), _("Quit the application"));
fileMenu->Append(wxID_EXIT, _("&Quit"), _("Quit the application"));
mbar->Append(fileMenu, _("&File"));
wxMenu* helpMenu = new wxMenu(_T(""));
helpMenu->Append(wxID_ABOUT, _("&About\tF1"), _("Show info about this application"));
helpMenu->Append(wxID_ABOUT, _("&About"), _("Show info about this application"));
mbar->Append(editMenu, _("&Edit"));
mbar->Append(helpMenu, _("&Help"));
@ -76,9 +76,7 @@ SetMenuBar(mbar);
}
TyroFrame::~TyroFrame()
{
}
TyroFrame::~TyroFrame() {}
wxAuiNotebook *TyroFrame::CreateNotebook()
{