use const char*, not char*, for string literals to avoid gcc warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51743 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-02-12 22:53:30 +00:00
parent 8e9ca79b3c
commit 522a028a17
4 changed files with 11 additions and 11 deletions

View File

@@ -152,7 +152,7 @@ class EditPrint: public wxPrintout {
public:
//! constructor
EditPrint (Edit *edit, wxChar *title = _T(""));
EditPrint (Edit *edit, const wxChar *title = _T(""));
//! event handlers
bool OnPrintPage (int page);