X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/16f26dadb502b874b6aa7b5fa914928be0c5f1af..09e6c9287a7ab41871e2b7aeedf1ca443e13fd4f:/samples/html/zip/zip.cpp?ds=sidebyside diff --git a/samples/html/zip/zip.cpp b/samples/html/zip/zip.cpp index f33295c215..3707e4f6f7 100644 --- a/samples/html/zip/zip.cpp +++ b/samples/html/zip/zip.cpp @@ -3,11 +3,6 @@ // Purpose: wxHtml testing example ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(__APPLE__) - #pragma implementation "test.cpp" - #pragma interface "test.cpp" -#endif - // For compilers that support precompilation, includes "wx/wx.h". #include "wx/wxprec.h" @@ -153,14 +148,16 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size) // ... and attach this menu bar to the frame SetMenuBar(menuBar); +#if wxUSE_STATUSBAR CreateStatusBar(1); +#endif // wxUSE_STATUSBAR - { html = new wxHtmlWindow(this); html -> SetRelatedFrame(this, _("HTML : %s")); +#if wxUSE_STATUSBAR html -> SetRelatedStatusBar(0); +#endif // wxUSE_STATUSBAR html -> LoadPage(wxT("start.htm")); - } }