- modified icons to properly work with windows (bothh ico files and vc++ projeect files etc)

This commit is contained in:
Mark Vejvoda
2010-06-25 22:04:40 +00:00
parent 1a8250d2d2
commit 15ee2da57f
18 changed files with 96 additions and 19 deletions

View File

@@ -115,6 +115,12 @@ MainWindow::MainWindow(const string &modelPath)
CreateStatusBar();
#ifdef WIN32
wxInitAllImageHandlers();
wxIcon icon("IDI_ICON1");
SetIcon(icon);
#endif
timer = new wxTimer(this);
timer->Start(100);
@@ -126,6 +132,7 @@ MainWindow::~MainWindow(){
delete model;
delete timer;
delete glCanvas;
}
void MainWindow::init(){