patches from Ricky Gonzales <gonzales@pyramid3.net>:
1. BC++ 5.5 compilation/building fixes 2. wxMSW listctrl will use correct ILC_COLOR flag depending on current display depth 3. wxFrame::Show() argument is TRUE by default undet GTK/Motif too git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6480 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -158,12 +158,12 @@ typedef short INT16;
|
||||
/* INT32 must hold at least signed 32-bit values. */
|
||||
|
||||
/* Modified JACS 23/4/99. 1200 means VC++ 6 */
|
||||
#if !defined(XMD_H) && !(_MSC_VER >= 1200) /* X11/xmd.h correctly defines INT32 */
|
||||
#if !defined(XMD_H) && !(_MSC_VER >= 1200) && !(__BORLANDC__ >= 0x550) /* X11/xmd.h correctly defines INT32 */
|
||||
typedef long INT32;
|
||||
#endif
|
||||
|
||||
/* Added JACS 23/4/99, to get INT32 definition */
|
||||
#if (_MSC_VER >= 1200)
|
||||
#if (_MSC_VER >= 1200) || (__BORLANDC__ >= 0x550)
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user