]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/life/life.cpp
Only include <unistd.h> under Unix in wxGTK code.
[wxWidgets.git] / demos / life / life.cpp
index 0402bd99445795e6414ee65326b9337ca610ef97..3a256a67f24a78ecefae34e1af1c302da093fad6 100644 (file)
@@ -38,7 +38,7 @@
 // resources
 // --------------------------------------------------------------------------
 
 // resources
 // --------------------------------------------------------------------------
 
-#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__)
+#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXX11__)
     // application icon
     #include "mondrian.xpm"
 
     // application icon
     #include "mondrian.xpm"
 
@@ -163,9 +163,8 @@ bool LifeApp::OnInit()
     // create the main application window
     LifeFrame *frame = new LifeFrame();
 
     // create the main application window
     LifeFrame *frame = new LifeFrame();
 
-    // show it and tell the application that it's our main window
+    // show it
     frame->Show(true);
     frame->Show(true);
-    SetTopWindow(frame);
 
     // just for Motif
 #ifdef __WXMOTIF__
 
     // just for Motif
 #ifdef __WXMOTIF__