X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bff023f172d6f9728af27773d0b5fc6e06508d95..f2b099261f9e46d65f1fbcfd2a35aa816d5a2818:/include/wx/generic/busyinfo.h diff --git a/include/wx/generic/busyinfo.h b/include/wx/generic/busyinfo.h index feaa431831..87daf294fd 100644 --- a/include/wx/generic/busyinfo.h +++ b/include/wx/generic/busyinfo.h @@ -7,13 +7,15 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifndef __BUSYINFO_H__ -#define __BUSYINFO_H__ +#ifndef _WX_BUSYINFO_H_ +#define _WX_BUSYINFO_H_ #include "wx/defs.h" #if wxUSE_BUSYINFO +#include "wx/object.h" + class WXDLLIMPEXP_FWD_CORE wxFrame; class WXDLLIMPEXP_FWD_CORE wxWindow; @@ -23,7 +25,7 @@ class WXDLLIMPEXP_FWD_CORE wxWindow; // Can be used in exactly same way as wxBusyCursor //-------------------------------------------------------------------------------- -class WXDLLEXPORT wxBusyInfo : public wxObject +class WXDLLIMPEXP_CORE wxBusyInfo : public wxObject { public: wxBusyInfo(const wxString& message, wxWindow *parent = NULL); @@ -33,10 +35,8 @@ public: private: wxFrame *m_InfoFrame; - DECLARE_NO_COPY_CLASS(wxBusyInfo) + wxDECLARE_NO_COPY_CLASS(wxBusyInfo); }; - #endif // wxUSE_BUSYINFO - -#endif // __BUSYINFO_H__ +#endif // _WX_BUSYINFO_H_