From: Vadim Zeitlin Date: Thu, 5 Apr 2007 22:32:35 +0000 (+0000) Subject: compilation fixes for generic TAB navigation after last commit X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bf0e8244d985e240997590fbf41e37310c9abbd7 compilation fixes for generic TAB navigation after last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/containr.h b/include/wx/containr.h index e44b507a33..d9aed2f13d 100644 --- a/include/wx/containr.h +++ b/include/wx/containr.h @@ -15,6 +15,9 @@ #include "wx/defs.h" +class WXDLLEXPORT wxWindow; +class WXDLLEXPORT wxWindowBase; + /* Implementation note: wxControlContainer is not a real mix-in but rather a class meant to be aggregated with (and not inherited from). Although @@ -61,10 +64,10 @@ protected: // return true if we should be focusable bool ShouldAcceptFocus() const; -private: // the parent window we manage the children for wxWindow *m_winParent; +private: // value returned by AcceptsFocus(), should be changed using SetCanFocus() // only bool m_acceptsFocus; @@ -140,8 +143,6 @@ class WXDLLEXPORT wxControlContainer : public wxControlContainerBase class WXDLLEXPORT wxFocusEvent; class WXDLLEXPORT wxNavigationKeyEvent; -class WXDLLEXPORT wxWindow; -class WXDLLEXPORT wxWindowBase; // ---------------------------------------------------------------------------- // wxControlContainer for TAB navigation implemented in wx itself