Fix compilation error in ownerdrw sample.

A frame's title parameter is using const wxChar * and is passed a const
char * as argument. Use a wxString as parameter to fix the error.
This commit is contained in:
Dimitri Schoolwerth 2015-04-17 14:30:23 +04:00
parent 7af8598903
commit a1902c1456

View File

@ -39,7 +39,7 @@ class OwnerDrawnFrame : public wxFrame
{
public:
// ctor & dtor
OwnerDrawnFrame(wxFrame *frame, const wxChar *title, int x, int y, int w, int h);
OwnerDrawnFrame(wxFrame *frame, const wxString& title, int x, int y, int w, int h);
~OwnerDrawnFrame(){};
// notifications
@ -255,7 +255,7 @@ void OwnerDrawnFrame::InitMenu()
}
// main frame constructor
OwnerDrawnFrame::OwnerDrawnFrame(wxFrame *frame, const wxChar *title,
OwnerDrawnFrame::OwnerDrawnFrame(wxFrame *frame, const wxString& title,
int x, int y, int w, int h)
: wxFrame(frame, wxID_ANY, title, wxPoint(x, y), wxSize(w, h))
{