]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/calendar/calendar.cpp
removed src/gtk/eggtrayicon.h
[wxWidgets.git] / samples / calendar / calendar.cpp
index 4d66af136cce5b83de1cc647f40d2b3c6438aec2..6bd3311525de68b2223845fe2709a18ad52c5bc3 100644 (file)
@@ -205,7 +205,7 @@ bool MyApp::OnInit()
     frame->Show(true);
 
     // success: wxApp::OnRun() will be called which will enter the main message
-    // loop and the application will run. If we returned FALSE here, the
+    // loop and the application will run. If we returned false here, the
     // application would exit immediately.
     return true;
 }
@@ -279,13 +279,13 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
 
 void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
 {
-    // TRUE is to force the frame to close
+    // true is to force the frame to close
     Close(true);
 }
 
 void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
 {
-    wxMessageBox(_T("wxCalendarCtrl sample\n© 2000 Vadim Zeitlin"),
+    wxMessageBox(_T("wxCalendarCtrl sample\n(c) 2000 Vadim Zeitlin"),
                  _T("About Calendar"), wxOK | wxICON_INFORMATION, this);
 }