]> git.saurik.com Git - wxWidgets.git/blame - include/wx/afterstd.h
Make wxChoice and wxComboBox behaviour same as in native controls in wxMSW.
[wxWidgets.git] / include / wx / afterstd.h
CommitLineData
df5168c4 1///////////////////////////////////////////////////////////////////////////////
233f5738 2// Name: wx/afterstd.h
df5168c4
MB
3// Purpose: #include after STL headers
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 07/07/03
7// RCS-ID: $Id$
8// Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence
df5168c4
MB
10///////////////////////////////////////////////////////////////////////////////
11
12/**
13 See the comments in beforestd.h.
14 */
15
fa3f1180 16#if defined(__WINDOWS__)
335991af
MB
17 #include "wx/msw/winundef.h"
18#endif
ffbc1990
VZ
19
20// undo what we did in wx/beforestd.h
21#if defined(__VISUALC__) && __VISUALC__ <= 1201
e5898961
MB
22 // MSVC 5 does not have this
23 #if _MSC_VER > 1100
24 #pragma warning(pop)
25 #else
26 // 'expression' : signed/unsigned mismatch
27 #pragma warning(default:4018)
28
0545fc01
VZ
29 // 'identifier' : unreferenced formal parameter
30 #pragma warning(default:4100)
31
e5898961
MB
32 // 'conversion' : conversion from 'type1' to 'type2',
33 // possible loss of data
34 #pragma warning(default:4244)
35
36 // C++ language change: to explicitly specialize class template
37 // 'identifier' use the following syntax
38 #pragma warning(default:4663)
39 #endif
df5168c4
MB
40#endif
41
d6f513f8
VS
42// see beforestd.h for explanation
43#if defined(HAVE_VISIBILITY) && defined(HAVE_BROKEN_LIBSTDCXX_VISIBILITY)
44 #pragma GCC visibility pop
45#endif