X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..e03e94b03776799d428e5d54dd6b4a90055df8cd:/include/wx/generic/numdlgg.h diff --git a/include/wx/generic/numdlgg.h b/include/wx/generic/numdlgg.h index 6e0e40f930..1ac15c680f 100644 --- a/include/wx/generic/numdlgg.h +++ b/include/wx/generic/numdlgg.h @@ -12,23 +12,23 @@ #ifndef __NUMDLGH_G__ #define __NUMDLGH_G__ -#if wxUSE_NUMBERDLG - #include "wx/defs.h" +#if wxUSE_NUMBERDLG + #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, @@ -64,17 +64,16 @@ private: // 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 = (wxWindow *)NULL, + const wxPoint& pos = wxDefaultPosition); #endif // wxUSE_NUMBERDLG #endif // __NUMDLGH_G__ -