]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/mobile/styles/styles.cpp
some more SetIcon() calls added; cleanup indentation of some samples
[wxWidgets.git] / samples / mobile / styles / styles.cpp
index ddef0c19e6890759602a1e93e3868bae0189591f..8042e2d636cfc3be7f24106f657fac70e3c0cd67 100644 (file)
@@ -5,10 +5,6 @@
 // Copyright:
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-    #pragma implementation "styles.cpp"
-#endif
-
 // For compilers that support precompilation
 #include "wx/wxprec.h"
 
 // Include private headers
 #include "styles.h"
 
+#ifndef __WXMSW__
+    #include "../../sample.xpm"
+#endif
+
 //------------------------------------------------------------------------------
 // MyFrame
 //------------------------------------------------------------------------------
@@ -35,6 +35,8 @@ MyFrame::MyFrame( wxWindow *parent, wxWindowID id, const wxString &title,
     const wxPoint &position, const wxSize& size, long style ) :
     wxFrame( parent, id, title, position, size, style )
 {
+    SetIcon(wxICON(sample));
+
     // Create menu and status bar.
     CreateMyMenuBar();
 #if wxUSE_STATUSBAR
@@ -90,6 +92,9 @@ IMPLEMENT_APP(MyApp)
 
 bool MyApp::OnInit()
 {
+    if ( !wxApp::OnInit() )
+        return false;
+
     wxInitAllImageHandlers();
 
     SetVendorName(_T("Free world"));