X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e25a373d03909a80d28b393158fadd9a5968e6e..ca6911c361b04290fe1f0e64b616249b3b3d71ba:/include/wx/generic/numdlgg.h diff --git a/include/wx/generic/numdlgg.h b/include/wx/generic/numdlgg.h index 2859462745..da413d2da7 100644 --- a/include/wx/generic/numdlgg.h +++ b/include/wx/generic/numdlgg.h @@ -19,16 +19,16 @@ #include "wx/dialog.h" #if wxUSE_SPINCTRL - class WXDLLEXPORT wxSpinCtrl; + class WXDLLIMPEXP_FWD_CORE wxSpinCtrl; #else - class WXDLLEXPORT wxTextCtrl; + class WXDLLIMPEXP_FWD_CORE wxTextCtrl; #endif // wxUSE_SPINCTRL // ---------------------------------------------------------------------------- // wxNumberEntryDialog: a dialog with spin control, [ok] and [cancel] buttons // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxNumberEntryDialog : public wxDialog +class WXDLLIMPEXP_CORE wxNumberEntryDialog : public wxDialog { public: wxNumberEntryDialog(wxWindow *parent, @@ -57,22 +57,22 @@ protected: private: DECLARE_EVENT_TABLE() DECLARE_DYNAMIC_CLASS(wxNumberEntryDialog) - DECLARE_NO_COPY_CLASS(wxNumberEntryDialog) + wxDECLARE_NO_COPY_CLASS(wxNumberEntryDialog); }; // ---------------------------------------------------------------------------- // function to get a number from user // ---------------------------------------------------------------------------- -long WXDLLEXPORT -wxGetNumberFromUser(const wxString& message, - const wxString& prompt, - const wxString& caption, - long value = 0, - long min = 0, - long max = 100, - wxWindow *parent = (wxWindow *)NULL, - const wxPoint& pos = wxDefaultPosition); +WXDLLIMPEXP_CORE long + wxGetNumberFromUser(const wxString& message, + const wxString& prompt, + const wxString& caption, + long value = 0, + long min = 0, + long max = 100, + wxWindow *parent = NULL, + const wxPoint& pos = wxDefaultPosition); #endif // wxUSE_NUMBERDLG