From ab20a9a95a8bbed75bfc6ecba20f013eb9dcff46 Mon Sep 17 00:00:00 2001 From: "J. Russell Smyth" Date: Wed, 29 Sep 1999 17:44:14 +0000 Subject: [PATCH] Added defines to allow altered tab placement under gcc-2.95 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3751 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/notebook.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/wx/msw/notebook.h b/include/wx/msw/notebook.h index 95a794e6b8..1a5dde10c1 100644 --- a/include/wx/msw/notebook.h +++ b/include/wx/msw/notebook.h @@ -22,6 +22,16 @@ #include #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 // ----------------------------------------------------------------------------