]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fixes for generic TAB navigation after last commit
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 5 Apr 2007 22:32:35 +0000 (22:32 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 5 Apr 2007 22:32:35 +0000 (22:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/containr.h

index e44b507a33a40f30f8161d0a4c7e81f8c0d06a4f..d9aed2f13d14a2dc148a7e4b518bcdf231daa13b 100644 (file)
@@ -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