]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/notebook.cpp
only set parent frame ontop when the current frame being destructed is active
[wxWidgets.git] / src / msw / notebook.cpp
index fe431a123410a56e2fdff76581004c99d78c1178..67cc03440b9f203b1cc705dd34c00c84126652a1 100644 (file)
 // hide the ugly cast
 #define m_hwnd    (HWND)GetHWND()
 
+// ----------------------------------------------------------------------------
+// constants
+// ----------------------------------------------------------------------------
+
+// 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
+
 // ----------------------------------------------------------------------------
 // event table
 // ----------------------------------------------------------------------------