X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1de43645160fd0686ec025112362d56da2ad77c2..fba05595e6cca40763f8ead119c7ad61cb01e0e4:/include/wx/mac/carbon/spinctrl.h diff --git a/include/wx/mac/carbon/spinctrl.h b/include/wx/mac/carbon/spinctrl.h old mode 100755 new mode 100644 index 5970091073..5a77b2a9f7 --- a/include/wx/mac/carbon/spinctrl.h +++ b/include/wx/mac/carbon/spinctrl.h @@ -22,8 +22,12 @@ #if wxUSE_SPINBTN -class WXDLLEXPORT wxSpinButton; -class WXDLLEXPORT wxTextCtrl; +#include "wx/containr.h" + +class WXDLLIMPEXP_FWD_CORE wxSpinButton; +class WXDLLIMPEXP_FWD_CORE wxTextCtrl; +class WXDLLIMPEXP_FWD_CORE wxSpinCtrlText; +class WXDLLIMPEXP_FWD_CORE wxSpinCtrlButton; // ---------------------------------------------------------------------------- // wxSpinCtrl is a combination of wxTextCtrl and wxSpinButton @@ -104,6 +108,10 @@ private: wxTextCtrl *m_text; wxSpinButton *m_btn; + friend class wxSpinCtrlText; + friend class wxSpinCtrlButton; + + int m_oldValue; private: DECLARE_EVENT_TABLE() DECLARE_DYNAMIC_CLASS(wxSpinCtrl)