]> git.saurik.com Git - wxWidgets.git/commitdiff
Added defines to allow altered tab placement under gcc-2.95
authorJ. Russell Smyth <drfish@cox.net>
Wed, 29 Sep 1999 17:44:14 +0000 (17:44 +0000)
committerJ. Russell Smyth <drfish@cox.net>
Wed, 29 Sep 1999 17:44:14 +0000 (17:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3751 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/notebook.h

index 95a794e6b8c1cd91f0a1dc84bb1d23f0c99ef417..1a5dde10c11223c40559d099d553c6d76b589317 100644 (file)
   #include <wx/dynarray.h>
 #endif  //_DYNARRAY_H
 
+// This is a work-around for missing defines in gcc-2.95 headers
+#ifndef TCS_RIGHT
+#define TCS_RIGHT       0x0002
+#endif
+#ifndef TCS_VERTICAL
+#define TCS_VERTICAL    0x0080
+#endif
+#ifndef TCS_BOTTOM
+#define TCS_BOTTOM      TCS_RIGHT
+#endif
 // ----------------------------------------------------------------------------
 // types
 // ----------------------------------------------------------------------------