]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/combo/combo.cpp
added --enable-ps-in-msw configure option
[wxWidgets.git] / samples / combo / combo.cpp
index e4cde90f95cca5fde3aaf1a1ae6badc30a44ee06..cb2f5238c26a876e630dbb778042f39a758dd30e 100644 (file)
@@ -154,6 +154,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(_T("wxComboCtrl and wxOwnerDrawnComboBox Sample"));
 
@@ -744,7 +747,7 @@ MyFrame::MyFrame(const wxString& title)
     m_logWin->SetEditable(false);
     wxLogTextCtrl* logger = new wxLogTextCtrl( m_logWin );
     m_logOld = logger->SetActiveTarget( logger );
-    logger->SetTimestamp( NULL );
+    logger->DisableTimestamp();
 
 
     topSizer = new wxBoxSizer( wxVERTICAL );