diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:17:47 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:17:47 +0000 |
commit | 616d01d77857400b27931f64781b8e0b64c61bed (patch) | |
tree | 159bd80c4e88dbd42d1dd764eaa7851d6bcd6a1d /shell | |
parent | 30c61d273f284b30f51a71066377d8ebf790d3e1 (diff) |
INTEGRATION: CWS warnings01 (1.3.14); FILE MERGED
2006/03/10 15:10:58 pl 1.3.14.1: #i55991# removed warnings for windows platform
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/backends/wininetbe/wininetbackend.cxx | 8 | ||||
-rw-r--r-- | shell/source/backends/wininetbe/wininetbackend.hxx | 10 | ||||
-rw-r--r-- | shell/source/backends/wininetbe/wininetbecdef.cxx | 8 |
3 files changed, 16 insertions, 10 deletions
diff --git a/shell/source/backends/wininetbe/wininetbackend.cxx b/shell/source/backends/wininetbe/wininetbackend.cxx index b62a5a1f885a..8ef91639ba61 100644 --- a/shell/source/backends/wininetbe/wininetbackend.cxx +++ b/shell/source/backends/wininetbe/wininetbackend.cxx @@ -4,9 +4,9 @@ * * $RCSfile: wininetbackend.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-07 19:49:56 $ + * last change: $Author: hr $ $Date: 2006-06-19 14:17:13 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -74,7 +74,7 @@ WinInetBackend* WinInetBackend::createInstance( // --------------------------------------------------------------------------------------- uno::Reference<backend::XLayer> SAL_CALL WinInetBackend::getLayer( - const rtl::OUString& aComponent, const rtl::OUString& aTimestamp) + const rtl::OUString& aComponent, const rtl::OUString& /*aTimestamp*/) throw (backend::BackendAccessException, lang::IllegalArgumentException) { @@ -99,7 +99,7 @@ uno::Reference<backend::XLayer> SAL_CALL WinInetBackend::getLayer( //------------------------------------------------------------------------------ uno::Reference<backend::XUpdatableLayer> SAL_CALL -WinInetBackend::getUpdatableLayer(const rtl::OUString& aComponent) +WinInetBackend::getUpdatableLayer(const rtl::OUString& /*aComponent*/) throw (backend::BackendAccessException,lang::NoSupportException, lang::IllegalArgumentException) { diff --git a/shell/source/backends/wininetbe/wininetbackend.hxx b/shell/source/backends/wininetbe/wininetbackend.hxx index 2a8878f8fbea..ee2f46feebf1 100644 --- a/shell/source/backends/wininetbe/wininetbackend.hxx +++ b/shell/source/backends/wininetbe/wininetbackend.hxx @@ -4,9 +4,9 @@ * * $RCSfile: wininetbackend.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-07 19:50:11 $ + * last change: $Author: hr $ $Date: 2006-06-19 14:17:27 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -60,8 +60,14 @@ #include <rtl/string.hxx> #endif +#if defined _MSC_VER +#pragma warning(push, 1) +#endif #include <windows.h> #include <wininet.h> +#if defined _MSC_VER +#pragma warning(pop) +#endif namespace css = com::sun::star ; namespace uno = css::uno ; diff --git a/shell/source/backends/wininetbe/wininetbecdef.cxx b/shell/source/backends/wininetbe/wininetbecdef.cxx index 991d9345da2d..5e144f19f3b7 100644 --- a/shell/source/backends/wininetbe/wininetbecdef.cxx +++ b/shell/source/backends/wininetbe/wininetbecdef.cxx @@ -4,9 +4,9 @@ * * $RCSfile: wininetbecdef.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-07 19:50:33 $ + * last change: $Author: hr $ $Date: 2006-06-19 14:17:47 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -78,14 +78,14 @@ static const cppu::ImplementationEntry kImplementations_entries[] = //------------------------------------------------------------------------------ extern "C" void SAL_CALL component_getImplementationEnvironment( - const sal_Char **aEnvTypeName, uno_Environment **aEnvironment) { + const sal_Char **aEnvTypeName, uno_Environment ** /*aEnvironment*/) { *aEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME ; } //------------------------------------------------------------------------------ -extern "C" sal_Bool SAL_CALL component_writeInfo(void *pServiceManager, void *pRegistryKey) { +extern "C" sal_Bool SAL_CALL component_writeInfo(void * /*pServiceManager*/, void *pRegistryKey) { using namespace ::com::sun::star::registry; if (pRegistryKey) |