diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:41:08 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:41:08 +0000 |
commit | d5c1a4fa7fb7c5127c061bcf9accfee2181ac9b2 (patch) | |
tree | eb2c11b064140684628067757a61090053a42111 /embedserv | |
parent | 462cf515d98a1f87fa610665257213cfcbb36df0 (diff) |
INTEGRATION: CWS warnings01 (1.8.16); FILE MERGED
2006/05/24 01:12:51 sb 1.8.16.2: RESYNC: (1.8-1.9); FILE MERGED
2006/02/20 15:31:46 cd 1.8.16.1: #i55991# Warning free code for Windows C++ compiler
Diffstat (limited to 'embedserv')
-rw-r--r-- | embedserv/source/embed/intercept.cxx | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/embedserv/source/embed/intercept.cxx b/embedserv/source/embed/intercept.cxx index 9c6ed29a50cc..a13ecd53cbb4 100644 --- a/embedserv/source/embed/intercept.cxx +++ b/embedserv/source/embed/intercept.cxx @@ -4,9 +4,9 @@ * * $RCSfile: intercept.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: rt $ $Date: 2006-05-05 09:56:13 $ + * last change: $Author: hr $ $Date: 2006-06-20 05:41:08 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -48,7 +48,7 @@ using namespace ::com::sun::star; -uno::Sequence<::rtl::OUString> Interceptor::m_aInterceptedURL(IUL); +uno::Sequence< ::rtl::OUString > Interceptor::m_aInterceptedURL(IUL); @@ -189,7 +189,7 @@ void SAL_CALL Interceptor::dispatch( const util::URL& URL, const uno::Sequence< - beans::PropertyValue >& Arguments ) + beans::PropertyValue >& /*Arguments*/ ) throw (uno::RuntimeException) { ::rtl::Reference< EmbeddedDocumentInstanceAccess_Impl > xOleAccess; @@ -513,3 +513,10 @@ Interceptor::setMasterDispatchProvider( osl::MutexGuard aGuard(m_aMutex); m_xMasterDispatchProvider = NewSupplier; } + +// Fix strange warnings about some +// ATL::CAxHostWindow::QueryInterface|AddRef|Releae functions. +// warning C4505: 'xxx' : unreferenced local function has been removed +#if defined(_MSC_VER) +#pragma warning(disable: 4505) +#endif |