Minor tweaks
This commit is contained in:
parent
ef5228e443
commit
6d87f0a004
2
Tyro.cbp
2
Tyro.cbp
@ -31,7 +31,7 @@
|
|||||||
<Add option="`wx-config --cflags`" />
|
<Add option="`wx-config --cflags`" />
|
||||||
</Compiler>
|
</Compiler>
|
||||||
<Linker>
|
<Linker>
|
||||||
<Add option="`wx-config --libs`" />
|
<Add option="`wx-config --libs all`" />
|
||||||
</Linker>
|
</Linker>
|
||||||
<Unit filename="TyroApp.cpp" />
|
<Unit filename="TyroApp.cpp" />
|
||||||
<Unit filename="TyroApp.h" />
|
<Unit filename="TyroApp.h" />
|
||||||
|
@ -56,11 +56,11 @@ TyroFrame::TyroFrame(wxFrame *frame, const wxString& title)
|
|||||||
wxMenu* editMenu = new wxMenu(_T(""));
|
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"));
|
mbar->Append(fileMenu, _("&File"));
|
||||||
|
|
||||||
wxMenu* helpMenu = new wxMenu(_T(""));
|
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(editMenu, _("&Edit"));
|
||||||
mbar->Append(helpMenu, _("&Help"));
|
mbar->Append(helpMenu, _("&Help"));
|
||||||
|
|
||||||
@ -76,9 +76,7 @@ SetMenuBar(mbar);
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
TyroFrame::~TyroFrame()
|
TyroFrame::~TyroFrame() {}
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
wxAuiNotebook *TyroFrame::CreateNotebook()
|
wxAuiNotebook *TyroFrame::CreateNotebook()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user