X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e1d63b79352db5290a9f86428d193bd6a08ef32f..2d46f281a5d4ea06c420a46748cc1b2a7b2af3cb:/include/wx/palmos/progdlg.h diff --git a/include/wx/palmos/progdlg.h b/include/wx/palmos/progdlg.h index 0000d901ee..a6de9ec0b7 100644 --- a/include/wx/palmos/progdlg.h +++ b/include/wx/palmos/progdlg.h @@ -12,17 +12,13 @@ #ifndef _PREFCONF_H_ #define _PREFCONF_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "progdlg.h" -#endif - #include "wx/defs.h" #if wxUSE_PROGRESSDLG #include "wx/dialog.h" -class WXDLLEXPORT wxProgressDialog : public wxDialog +class WXDLLIMPEXP_CORE wxProgressDialog : public wxDialog { DECLARE_DYNAMIC_CLASS(wxProgressDialog) public: @@ -31,17 +27,17 @@ public: int maximum = 100, wxWindow *parent = NULL, int style = wxPD_APP_MODAL | wxPD_AUTO_HIDE); - ~wxProgressDialog(); + virtual ~wxProgressDialog(); virtual bool Update(int value, const wxString& newmsg = wxEmptyString, bool *skip = NULL); void Resume(); virtual bool Show( bool show = true ); - Boolean Callback(PrgCallbackData *data); + Boolean Callback(/*PrgCallbackData */ void *data); private: - ProgressType *m_prgFrame; + /*ProgressType*/ void *m_prgFrame; wxString m_msg; int m_max,m_cur; bool m_canSkip;