X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cd72551c2b6cbf67a4a5caf0ba00ba64e41183b2..17283f91ee543a557ce2041332d88122e1bbb15d:/contrib/samples/gizmos/dynsash/dynsash.cpp diff --git a/contrib/samples/gizmos/dynsash/dynsash.cpp b/contrib/samples/gizmos/dynsash/dynsash.cpp index 4c15d95352..e31b11c036 100644 --- a/contrib/samples/gizmos/dynsash/dynsash.cpp +++ b/contrib/samples/gizmos/dynsash/dynsash.cpp @@ -39,7 +39,7 @@ class SashHtmlWindow : public wxHtmlWindow { public: SashHtmlWindow(wxWindow *parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - long style = wxHW_SCROLLBAR_NEVER, const wxString& name = "sashHtmlWindow"); + long style = wxHW_SCROLLBAR_NEVER, const wxString& name = wxT("sashHtmlWindow")); wxSize DoGetBestSize() const; @@ -51,19 +51,18 @@ private: IMPLEMENT_APP(Demo) -char *HTML_content = -"

wxDynamicSashWindow demo

" +wxChar *HTML_content = +wxT("

wxDynamicSashWindow demo

" "

Here is an example of how you can use wxDynamicSashWindow to allow your users to " "dynamically split and unify the views of your windows. Try dragging out a few splits " "and then reunifying the window." "

Also, see the dynsash_switch sample for an example of an application which " -"manages the scrollbars provided by wxDynamicSashWindow itself." -; +"manages the scrollbars provided by wxDynamicSashWindow itself."); bool Demo::OnInit() { wxInitAllImageHandlers(); - wxFrame *frame = new wxFrame(NULL, -1, "Dynamic Sash Demo"); + wxFrame *frame = new wxFrame(NULL, -1, wxT("Dynamic Sash Demo")); frame->SetSize(480, 480); wxDynamicSashWindow *sash = new wxDynamicSashWindow(frame, -1);