diff options
-rw-r--r-- | extensions/source/ole/jscriptclasses.hxx | 8 | ||||
-rw-r--r-- | extensions/source/ole/oledll.cxx | 7 | ||||
-rw-r--r-- | extensions/source/ole/servprov.cxx | 8 |
3 files changed, 16 insertions, 7 deletions
diff --git a/extensions/source/ole/jscriptclasses.hxx b/extensions/source/ole/jscriptclasses.hxx index 6619906781db..093b4c08ffb5 100644 --- a/extensions/source/ole/jscriptclasses.hxx +++ b/extensions/source/ole/jscriptclasses.hxx @@ -2,9 +2,9 @@ * * $RCSfile: jscriptclasses.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jl $ $Date: 2000-10-19 10:51:09 $ + * last change: $Author: obo $ $Date: 2003-03-31 17:22:12 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -68,7 +68,9 @@ #ifdef _DEBUG //#define _ATL_DEBUG_INTERFACES #endif - +#if _MSC_VER >= 1300 +#undef _DEBUG +#endif #include <atlbase.h> extern CComModule _Module; diff --git a/extensions/source/ole/oledll.cxx b/extensions/source/ole/oledll.cxx index 3096e126662c..0cf6ca9034aa 100644 --- a/extensions/source/ole/oledll.cxx +++ b/extensions/source/ole/oledll.cxx @@ -2,9 +2,9 @@ * * $RCSfile: oledll.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jl $ $Date: 2000-10-19 10:57:52 $ + * last change: $Author: obo $ $Date: 2003-03-31 17:22:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -63,6 +63,9 @@ #define _WIN32_WINNT 0x0400 #define _WIN32_DCOM +#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#undef _DEBUG +#endif #include <atlbase.h> CComModule _Module; #include <atlcom.h> diff --git a/extensions/source/ole/servprov.cxx b/extensions/source/ole/servprov.cxx index 750086a1aa22..a8d35749fcd4 100644 --- a/extensions/source/ole/servprov.cxx +++ b/extensions/source/ole/servprov.cxx @@ -2,9 +2,9 @@ * * $RCSfile: servprov.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: jl $ $Date: 2002-06-05 13:21:38 $ + * last change: $Author: obo $ $Date: 2003-03-31 17:22:12 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -68,6 +68,10 @@ #include <tools/presys.h> #define _WIN32_WINNT 0x0400 + +#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#undef _DEBUG +#endif #include <atlbase.h> extern CComModule _Module; #include <atlcom.h> |