]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/vector.h
Implement wxWindow::SetFocusIgnoringChildren for GTK+
[wxWidgets.git] / include / wx / vector.h
index 74252da28e0a7c071b871447c9edb3ccf4fbce16..3d983aab196d8fa256f5439324bcfb69b90e94f3 100644 (file)
@@ -21,6 +21,8 @@
 
 #else // !wxUSE_STL
 
+#include "wx/utils.h"
+
 template<typename T>
 class wxVector
 {
@@ -181,8 +183,9 @@ public:
 #endif // WXWIN_COMPATIBILITY_2_8
 
 private:
-    static const size_type ALLOC_INITIAL_SIZE = 16;
-    static const size_type ALLOC_MAX_SIZE = 4096;
+    // VC6 can't compile static const int members
+    enum { ALLOC_INITIAL_SIZE = 16 };
+    enum { ALLOC_MAX_SIZE = 4096 };
 
     void Copy(const wxVector& vb)
     {