X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e12152104f6f3a24afe09284bf5ad7b3cedfff1c..36a0190ebd5bd9a7302f60f6dcd608b80574e21c:/src/generic/busyinfo.cpp?ds=sidebyside diff --git a/src/generic/busyinfo.cpp b/src/generic/busyinfo.cpp index cf767882c5..003853d86a 100644 --- a/src/generic/busyinfo.cpp +++ b/src/generic/busyinfo.cpp @@ -3,7 +3,6 @@ // Purpose: Information window when app is busy // Author: Vaclav Slavik // Copyright: (c) 1999 Vaclav Slavik -// RCS-ID: $Id$ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -24,6 +23,7 @@ #endif #include "wx/busyinfo.h" +#include "wx/generic/stattextg.h" class WXDLLEXPORT wxInfoFrame : public wxFrame { @@ -31,7 +31,7 @@ public: wxInfoFrame(wxWindow *parent, const wxString& message); private: - DECLARE_NO_COPY_CLASS(wxInfoFrame) + wxDECLARE_NO_COPY_CLASS(wxInfoFrame); }; @@ -46,7 +46,11 @@ wxInfoFrame::wxInfoFrame(wxWindow *parent, const wxString& message) | wxFRAME_TOOL_WINDOW | wxSTAY_ON_TOP) { wxPanel *panel = new wxPanel( this ); +#ifdef __WXGTK__ + wxGenericStaticText *text = new wxGenericStaticText(panel, wxID_ANY, message); +#else wxStaticText *text = new wxStaticText(panel, wxID_ANY, message); +#endif panel->SetCursor(*wxHOURGLASS_CURSOR); text->SetCursor(*wxHOURGLASS_CURSOR);