]> git.saurik.com Git - wxWidgets.git/commitdiff
disable wxHAS_TEXT_WINDOW_STREAM for the old MSVC iostream.h library; don't disable...
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 5 Mar 2008 12:39:59 +0000 (12:39 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 5 Mar 2008 12:39:59 +0000 (12:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52328 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/textctrl.h

index b86137bc117197d18d91a61e6b995421e61ac1cc..926e6c226b9df0c318e6f23336a618c2dedf496f 100644 (file)
 #include "wx/dynarray.h"        // wxArrayInt
 #include "wx/gdicmn.h"          // wxPoint
 
-// Open Watcom 1.3 does allow only ios::rdbuf() while
-// we want something with streambuf parameter
-// Also, can't use streambuf if making or using a DLL :-(
-
+// some compilers don't have standard compliant rdbuf() (and MSVC has it only
+// in its new iostream library, not in the old one used with iostream.h)
 #if defined(__WATCOMC__) || \
     defined(__MWERKS__) || \
-    (defined(__WINDOWS__) && (defined(WXUSINGDLL) || defined(WXMAKINGDLL)))
+    ((defined(__VISUALC5__) || defined(__VISUALC6__)) && wxUSE_IOSTREAMH)
     #define wxHAS_TEXT_WINDOW_STREAM 0
 #elif wxUSE_STD_IOSTREAM
     #include "wx/ioswrap.h"