Fix identifers, _misc is no longer used.
Originally committed to SVN as r5169.
This commit is contained in:
parent
3ce2b1d802
commit
a3534f2cae
2 changed files with 2 additions and 2 deletions
|
@ -150,7 +150,7 @@ AboutScreen::AboutScreen(wxWindow *parent)
|
|||
wxTextCtrl *textctrl = new wxTextCtrl(this, -1, aboutString, wxDefaultPosition, wxSize(-1,200), wxTE_MULTILINE|wxTE_READONLY|wxBORDER_NONE);
|
||||
|
||||
wxSizer *MainSizer = new wxBoxSizer(wxVERTICAL);
|
||||
MainSizer->Add(new wxStaticBitmap(this, -1, GETIMAGE(splash_misc)), 0, wxCENTER, 0);
|
||||
MainSizer->Add(new wxStaticBitmap(this, -1, GETIMAGE(splash)), 0, wxCENTER, 0);
|
||||
MainSizer->Add(new wxStaticLine(this, wxID_ANY), 0, wxEXPAND|wxALL, 0);
|
||||
MainSizer->Add(textctrl, 0, wxEXPAND|wxALL, 0);
|
||||
MainSizer->Add(new wxStaticLine(this, wxID_ANY), 0, wxEXPAND|wxALL, 0);
|
||||
|
|
|
@ -176,7 +176,7 @@ FrameMain::FrameMain (wxArrayString args)
|
|||
SetIcon(wxICON(wxicon));
|
||||
#else
|
||||
wxIcon icon;
|
||||
icon.CopyFromBitmap(GETIMAGE(wxicon_misc));
|
||||
icon.CopyFromBitmap(GETIMAGE(wxicon));
|
||||
SetIcon(icon);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue