removed wx_dynamic_cast(), it can't be implemented properly without real dynamic_cast<>

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32674 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-03-08 11:17:01 +00:00
parent ed6dd18ae8
commit 330be53493
2 changed files with 1 additions and 28 deletions

View File

@@ -280,12 +280,6 @@ typedef int wxWindowID;
#define wx_static_cast(t, x) ((t)(x))
#endif
#ifdef HAVE_DYNAMIC_CAST
#define wx_dynamic_cast(t, x) dynamic_cast<t>(x)
#else
#define wx_dynamic_cast(t, x) ((t)(x))
#endif
#ifdef HAVE_CONST_CAST
#define wx_const_cast(t, x) const_cast<t>(x)
#else