diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 05:08:14 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 05:08:14 +0000 |
commit | cfed675eaea20630beb4aaac2e6d3b8779d29554 (patch) | |
tree | b2108f613b8dc5ec4bb0330974a5caae3fa3ca74 /dtrans | |
parent | 0718dbf353b2eff566a44a712d8ee678e920cac5 (diff) |
INTEGRATION: CWS warnings01 (1.3.4); FILE MERGED
2006/03/09 20:32:03 pl 1.3.4.1: #i55991# removed warnings for windows platform
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/workbench/XTDo.cxx | 10 | ||||
-rw-r--r-- | dtrans/source/win32/workbench/XTDo.hxx | 10 |
2 files changed, 16 insertions, 4 deletions
diff --git a/dtrans/source/win32/workbench/XTDo.cxx b/dtrans/source/win32/workbench/XTDo.cxx index 2195b5de6298..139d81ba531e 100644 --- a/dtrans/source/win32/workbench/XTDo.cxx +++ b/dtrans/source/win32/workbench/XTDo.cxx @@ -4,9 +4,9 @@ * * $RCSfile: XTDo.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 18:29:42 $ + * last change: $Author: hr $ $Date: 2006-06-20 06:08:04 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -47,8 +47,14 @@ #include "XTDo.hxx" #endif +#if defined _MSC_VER +#pragma warning(push,1) +#endif #include <windows.h> #include <ole2.h> +#if defined _MSC_VER +#pragma warning(pop) +#endif #include <memory> #include <tchar.h> diff --git a/dtrans/source/win32/workbench/XTDo.hxx b/dtrans/source/win32/workbench/XTDo.hxx index cffcfb2b0b4c..4c34d3261c8f 100644 --- a/dtrans/source/win32/workbench/XTDo.hxx +++ b/dtrans/source/win32/workbench/XTDo.hxx @@ -4,9 +4,9 @@ * * $RCSfile: XTDo.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 18:29:57 $ + * last change: $Author: hr $ $Date: 2006-06-20 06:08:14 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -42,9 +42,15 @@ // includes //------------------------------------------------------------------------ +#if defined _MSC_VER +#pragma warning(push,1) +#endif #include <windows.h> #include <ole2.h> #include <objidl.h> +#if defined _MSC_VER +#pragma warning(pop) +#endif #include <vector> |