X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8520f1374ceec64abae3802984c4f8654d8836ba..3c01c5951189e13b8b4a5d7b288b54d4a57a30f8:/samples/caret/caret.cpp diff --git a/samples/caret/caret.cpp b/samples/caret/caret.cpp index e075f5a4bf..a519db7faa 100644 --- a/samples/caret/caret.cpp +++ b/samples/caret/caret.cpp @@ -182,6 +182,9 @@ IMPLEMENT_APP(MyApp) // `Main program' equivalent: the program execution "starts" here bool MyApp::OnInit() { + if ( !wxApp::OnInit() ) + return false; + // create and show the main application window MyFrame *frame = new MyFrame(_T("Caret wxWidgets sample"), wxPoint(50, 50), wxSize(450, 340)); @@ -243,7 +246,7 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) { - wxMessageBox(_T("The caret wxWidgets sample.\n© 1999 Vadim Zeitlin"), + wxMessageBox(_T("The caret wxWidgets sample.\n(c) 1999 Vadim Zeitlin"), _T("About Caret"), wxOK | wxICON_INFORMATION, this); }