#include "wx/wx.h"
#endif
+#if !wxUSE_LOG
+# error You must set wxUSE_LOG to 1 in setup.h
+#endif
+
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
wxString msg = _T("Demonstrates keyboard event processing in wxWidgets\n")
- _T("© 2002 Vadim Zeitlin");
+ _T("(c) 2002 Vadim Zeitlin");
wxMessageBox(msg, _T("About wxKeyboard"), wxOK | wxICON_INFORMATION, this);
}