git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2349
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
int height = size.y;
long msFlags = WS_CHILD | WS_VISIBLE | WS_TABSTOP;
int height = size.y;
long msFlags = WS_CHILD | WS_VISIBLE | WS_TABSTOP;
+
+#ifndef PBS_VERTICAL
+#define PBS_VERTICAL 0x04
+#endif
+
if (m_windowStyle & wxGA_VERTICAL)
msFlags |= PBS_VERTICAL;
if (m_windowStyle & wxGA_VERTICAL)
msFlags |= PBS_VERTICAL;
+#ifndef PBS_SMOOTH
+#define PBS_SMOOTH 0x01
+#endif
+
if (m_windowStyle & wxGA_SMOOTH)
msFlags |= PBS_SMOOTH;
if (m_windowStyle & wxGA_SMOOTH)
msFlags |= PBS_SMOOTH;