]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/font/font.cpp
Fix unused param warnings
[wxWidgets.git] / samples / font / font.cpp
index 649a3d25a5819aadaa2be8cc603efa04eb0d29a3..722c813fb31a58311739b32033ac81dd8e696514 100644 (file)
@@ -40,7 +40,7 @@
 #endif
 
 // used as title for several dialog boxes
-static const wxChar SAMPLE_TITLE[] = "wxWidgets Font Sample";
+static const wxChar SAMPLE_TITLE[] = _T("wxWidgets Font Sample");
 
 // ----------------------------------------------------------------------------
 // private classes
@@ -234,6 +234,9 @@ IMPLEMENT_APP(MyApp)
 // `Main program' equivalent: the program execution "starts" here
 bool MyApp::OnInit()
 {
+    if ( !wxApp::OnInit() )
+        return false;
+
     // Create the main application window
     MyFrame *frame = new MyFrame(wxT("Font wxWidgets demo"),
                                  wxPoint(50, 50), wxSize(600, 400));