diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 05:06:42 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 05:06:42 +0000 |
commit | e188d7284ca93b80f0c2a61bf941841af29b875a (patch) | |
tree | 5a80886aa1d12244bdf846b496f434bd530774ca /dtrans | |
parent | 11eb11616db32e316887c35669cf485cb8bfce56 (diff) |
INTEGRATION: CWS warnings01 (1.11.4); FILE MERGED
2006/03/09 20:31:57 pl 1.11.4.1: #i55991# removed warnings for windows platform
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/dtobj/XTDataObject.hxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/dtrans/source/win32/dtobj/XTDataObject.hxx b/dtrans/source/win32/dtobj/XTDataObject.hxx index 33675e1f2cff..0d8b888cf121 100644 --- a/dtrans/source/win32/dtobj/XTDataObject.hxx +++ b/dtrans/source/win32/dtobj/XTDataObject.hxx @@ -4,9 +4,9 @@ * * $RCSfile: XTDataObject.hxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: rt $ $Date: 2005-09-08 18:26:38 $ + * last change: $Author: hr $ $Date: 2006-06-20 06:06:42 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -58,9 +58,15 @@ #include "FEtcList.hxx" #endif +#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 /*-------------------------------------------------------------------------- - the function principle of the windows clipboard: @@ -89,6 +95,7 @@ class CXTDataObject : public IDataObject public: CXTDataObject( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& aServiceManager, const ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::XTransferable >& aXTransferable ); + virtual ~CXTDataObject() {} //----------------------------------------------------------------- // ole interface implementation @@ -159,6 +166,7 @@ class CEnumFormatEtc : public IEnumFORMATETC { public: CEnumFormatEtc( LPUNKNOWN lpUnkOuter, const CFormatEtcContainer& aFormatEtcContainer ); + virtual ~CEnumFormatEtc() {} // IUnknown STDMETHODIMP QueryInterface( REFIID iid, LPVOID* ppvObject ); |