diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 05:08:49 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 05:08:49 +0000 |
commit | e8d7f588b785081f6911498f4ff34bae2c9620ee (patch) | |
tree | dd9b45abb715b0f2b2528a3c9a63522f1e165d42 /dtrans | |
parent | eb96a785b6103aa74d35e5b4158ac5b8bb5f6ad3 (diff) |
INTEGRATION: CWS warnings01 (1.9.4); FILE MERGED
2006/03/09 20:32:31 pl 1.9.4.1: #i55991# removed warnings for windows platform
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/test/win32/dnd/dndTest.cxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/dtrans/test/win32/dnd/dndTest.cxx b/dtrans/test/win32/dnd/dndTest.cxx index f8f87907f42c..ce8e23d7435d 100644 --- a/dtrans/test/win32/dnd/dndTest.cxx +++ b/dtrans/test/win32/dnd/dndTest.cxx @@ -4,9 +4,9 @@ * * $RCSfile: dndTest.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: rt $ $Date: 2005-09-08 18:31:36 $ + * last change: $Author: hr $ $Date: 2006-06-20 06:08:49 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -33,6 +33,9 @@ * ************************************************************************/ +#if defined _MSC_VER +#pragma warning(push,1) +#endif #include <windows.h> #include <comdef.h> #include <tchar.h> @@ -40,6 +43,9 @@ CComModule _Module; #include<atlcom.h> #include<atlimpl.cpp> +#if defined _MSC_VER +#pragma warning(pop) +#endif #include <com/sun/star/uno/Reference.h> #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/datatransfer/dnd/XDropTarget.hpp> |