compilation fixes for gcc-3.4

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29599 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2004-10-02 12:36:02 +00:00
parent d2ec8d8488
commit 749bfe9a6d
12 changed files with 12 additions and 12 deletions

View File

@@ -285,7 +285,7 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxMessageBox(_T("wxCalendarCtrl sample\n<EFBFBD> 2000 Vadim Zeitlin"), wxMessageBox(_T("wxCalendarCtrl sample\n(c) 2000 Vadim Zeitlin"),
_T("About Calendar"), wxOK | wxICON_INFORMATION, this); _T("About Calendar"), wxOK | wxICON_INFORMATION, this);
} }

View File

@@ -243,7 +243,7 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxMessageBox(_T("The caret wxWidgets sample.\n<EFBFBD> 1999 Vadim Zeitlin"), wxMessageBox(_T("The caret wxWidgets sample.\n(c) 1999 Vadim Zeitlin"),
_T("About Caret"), wxOK | wxICON_INFORMATION, this); _T("About Caret"), wxOK | wxICON_INFORMATION, this);
} }

View File

@@ -254,7 +254,7 @@ void CheckListBoxFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
void CheckListBoxFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) void CheckListBoxFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxMessageBox(wxT("Demo of wxCheckListBox control\n<EFBFBD> Vadim Zeitlin 1998-2002"), wxMessageBox(wxT("Demo of wxCheckListBox control\n(c) Vadim Zeitlin 1998-2002"),
wxT("About wxCheckListBox"), wxT("About wxCheckListBox"),
wxICON_INFORMATION, this); wxICON_INFORMATION, this);
} }

View File

@@ -216,7 +216,7 @@ void MyFrame::OnQuit(wxCommandEvent&)
void MyFrame::OnAbout(wxCommandEvent&) void MyFrame::OnAbout(wxCommandEvent&)
{ {
wxMessageBox(_T("wxConfig demo\n<EFBFBD> 1998-2001 Vadim Zeitlin"), _T("About"), wxMessageBox(_T("wxConfig demo\n(c) 1998-2001 Vadim Zeitlin"), _T("About"),
wxICON_INFORMATION | wxOK); wxICON_INFORMATION | wxOK);
} }

View File

@@ -263,7 +263,7 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxString msg; wxString msg;
msg.Printf( wxT("This is the network functions test sample.\n") msg.Printf( wxT("This is the network functions test sample.\n")
wxT("<EFBFBD> 1999 Vadim Zeitlin") ); wxT("(c) 1999 Vadim Zeitlin") );
wxMessageBox(msg, wxT("About NetTest"), wxOK | wxICON_INFORMATION, this); wxMessageBox(msg, wxT("About NetTest"), wxOK | wxICON_INFORMATION, this);
} }

View File

@@ -295,7 +295,7 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxMessageBox( wxT("Event sample shows different ways of using events\n") wxMessageBox( wxT("Event sample shows different ways of using events\n")
wxT("<EFBFBD> 2001 Vadim Zeitlin"), wxT("(c) 2001 Vadim Zeitlin"),
wxT("About Event Sample"), wxOK | wxICON_INFORMATION, this ); wxT("About Event Sample"), wxOK | wxICON_INFORMATION, this );
} }

View File

@@ -499,7 +499,7 @@ void MyFrame::OnClear(wxCommandEvent& WXUNUSED(event))
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxMessageBox(_T("Exec wxWidgets Sample\n<EFBFBD> 2000-2002 Vadim Zeitlin"), wxMessageBox(_T("Exec wxWidgets Sample\n(c) 2000-2002 Vadim Zeitlin"),
_T("About Exec"), wxOK | wxICON_INFORMATION, this); _T("About Exec"), wxOK | wxICON_INFORMATION, this);
} }

View File

@@ -319,7 +319,7 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxString msg = _T("Demonstrates keyboard event processing in wxWidgets\n") wxString msg = _T("Demonstrates keyboard event processing in wxWidgets\n")
_T("<EFBFBD> 2002 Vadim Zeitlin"); _T("(c) 2002 Vadim Zeitlin");
wxMessageBox(msg, _T("About wxKeyboard"), wxOK | wxICON_INFORMATION, this); wxMessageBox(msg, _T("About wxKeyboard"), wxOK | wxICON_INFORMATION, this);
} }

View File

@@ -385,7 +385,7 @@ void RegFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxMessageDialog dialog(this, wxMessageDialog dialog(this,
_T("wxRegistry sample\n") _T("wxRegistry sample\n")
_T("<EFBFBD> 1998, 2000 Vadim Zeitlin"), _T("(c) 1998, 2000 Vadim Zeitlin"),
_T("About wxRegTest"), wxOK); _T("About wxRegTest"), wxOK);
dialog.ShowModal(); dialog.ShowModal();

View File

@@ -313,7 +313,7 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxMessageBox(_T("Render sample shows how to use custom renderers.\n") wxMessageBox(_T("Render sample shows how to use custom renderers.\n")
_T("\n") _T("\n")
_T("<EFBFBD> 2003 Vadim Zeitlin"), _T("(c) 2003 Vadim Zeitlin"),
_T("About Render wxWidgets Sample"), _T("About Render wxWidgets Sample"),
wxOK | wxICON_INFORMATION, this); wxOK | wxICON_INFORMATION, this);
} }

View File

@@ -282,7 +282,7 @@ void VScrollFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxMessageBox(_T("VScroll shows how to implement scrolling with\n") wxMessageBox(_T("VScroll shows how to implement scrolling with\n")
_T("variable line heights.\n") _T("variable line heights.\n")
_T("<EFBFBD> 2003 Vadim Zeitlin"), _T("(c) 2003 Vadim Zeitlin"),
_T("About VScroll"), _T("About VScroll"),
wxOK | wxICON_INFORMATION, wxOK | wxICON_INFORMATION,
this); this);

View File

@@ -345,7 +345,7 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{ {
wxMessageBox(_T("Demo of wxWizard class\n") wxMessageBox(_T("Demo of wxWizard class\n")
_T("<EFBFBD> 1999, 2000 Vadim Zeitlin"), _T("(c) 1999, 2000 Vadim Zeitlin"),
_T("About wxWizard sample"), wxOK | wxICON_INFORMATION, this); _T("About wxWizard sample"), wxOK | wxICON_INFORMATION, this);
} }