Various documentation changes, makefile fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@177 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-07-03 16:39:59 +00:00
parent 0d3820b348
commit 884360bc11
20 changed files with 88 additions and 40 deletions

View File

@@ -70,15 +70,13 @@ bool MyApp::OnInit(void)
frame->SetIcon(wxIcon("aiai.xbm"));
#endif
// Make an image list containing large icons
// Make an image list containing small icons
m_imageListNormal = new wxImageList(16, 16, TRUE);
wxIcon *icon = new wxIcon("icon1", wxBITMAP_TYPE_ICO_RESOURCE);
m_imageListNormal->Add(*icon);
delete icon;
icon = new wxIcon("icon2", wxBITMAP_TYPE_ICO_RESOURCE);
m_imageListNormal->Add(*icon);
delete icon;
wxIcon icon1("icon1", wxBITMAP_TYPE_ICO_RESOURCE);
m_imageListNormal->Add(icon1);
wxIcon icon2("icon2", wxBITMAP_TYPE_ICO_RESOURCE);
m_imageListNormal->Add(icon2);
// Make a menubar
wxMenu *file_menu = new wxMenu;