diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-13 12:41:42 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-13 14:02:17 +0200 |
commit | 48ab773e681b1f129e9196c11f5d44b0caf3dbe9 (patch) | |
tree | ac87bd639853e42fff38f7cc4eb9a2b37d2e7d3d /ucb | |
parent | e61c2222550342457e93372aa6b03ea299e53722 (diff) |
warning C4101: unreferenced local variable
Change-Id: I627c2641dcebea1daa5a9264d8b4a5771bf8155f
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/cmis/cmis_content.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/cmis/cmis_repo_content.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/cmis/cmis_content.cxx b/ucb/source/ucp/cmis/cmis_content.cxx index 3349e0f9727f..8404203d9020 100644 --- a/ucb/source/ucp/cmis/cmis_content.cxx +++ b/ucb/source/ucp/cmis/cmis_content.cxx @@ -375,7 +375,7 @@ namespace cmis else SAL_INFO( "cmisucp", "Looking for unsupported property " << rProp.Name ); } - catch ( const libcmis::Exception& e ) + catch (const libcmis::Exception&) { xRow->appendVoid( rProp ); } diff --git a/ucb/source/ucp/cmis/cmis_repo_content.cxx b/ucb/source/ucp/cmis/cmis_repo_content.cxx index af501b30d98b..233b2f0b000b 100644 --- a/ucb/source/ucp/cmis/cmis_repo_content.cxx +++ b/ucb/source/ucp/cmis/cmis_repo_content.cxx @@ -128,7 +128,7 @@ namespace cmis SAL_INFO( "cmisucp", "Looking for unsupported property " << rProp.Name ); } } - catch ( const libcmis::Exception& e ) + catch (const libcmis::Exception&) { xRow->appendVoid( rProp ); } @@ -156,7 +156,7 @@ namespace cmis { m_aRepositories = libcmis::SessionFactory::getRepositories( params ); } - catch ( const libcmis::Exception& e ) + catch (const libcmis::Exception&) { } } |