|
From: Ralph T. <ra...@us...> - 2005-04-15 22:28:13
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23659/adobe-source/adobe/test/visual/headers Modified Files: ui_core.hpp Log Message: Magic to make visual compile on MSVC 7.1 again. Worryingly I'm not quite sure why the previous change broke the MSVC build... Index: ui_core.hpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/headers/ui_core.hpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** ui_core.hpp 15 Apr 2005 20:39:11 -0000 1.7 --- ui_core.hpp 15 Apr 2005 22:28:00 -0000 1.8 *************** *** 12,16 **** /****************************************************************************************************/ ! #include <string> #include <boost/function.hpp> --- 12,19 ---- /****************************************************************************************************/ ! #if ADOBE_PLATFORM_WIN ! # include <string> ! # include <sstream> ! #endif #include <boost/function.hpp> *************** *** 22,29 **** #include <adobe/rectangle.hpp> - #if ADOBE_PLATFORM_WIN - #include <sstream> - #endif - /****************************************************************************************************/ --- 25,28 ---- |