summaryrefslogtreecommitdiff
path: root/ucb/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 04:31:20 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 04:31:20 +0000
commit4fdc4f6e2d981c831212ce5324158fac843274a8 (patch)
tree81e3b96c2bf0194a02c3ed297e93b1e4f33dd796 /ucb/source
parent7e302a20e022037d9926ed707ae4e786340a4fff (diff)
INTEGRATION: CWS warnings01 (1.9.10); FILE MERGED
2005/11/10 17:15:22 pl 1.9.10.1: #i55991# removed warnings
Diffstat (limited to 'ucb/source')
-rw-r--r--ucb/source/ucp/tdoc/tdoc_content.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_content.cxx b/ucb/source/ucp/tdoc/tdoc_content.cxx
index 0b83263b6498..f28d7361add9 100644
--- a/ucb/source/ucp/tdoc/tdoc_content.cxx
+++ b/ucb/source/ucp/tdoc/tdoc_content.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: tdoc_content.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 15:58:36 $
+ * last change: $Author: hr $ $Date: 2006-06-20 05:31:20 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -399,7 +399,7 @@ Content::getIdentifier()
// virtual
uno::Any SAL_CALL Content::execute(
const star::ucb::Command& aCommand,
- sal_Int32 CommandId,
+ sal_Int32 /*CommandId*/,
const uno::Reference< star::ucb::XCommandEnvironment >& Environment )
throw( uno::Exception,
star::ucb::CommandAbortedException,
@@ -679,7 +679,7 @@ uno::Any SAL_CALL Content::execute(
//=========================================================================
// virtual
-void SAL_CALL Content::abort( sal_Int32 CommandId )
+void SAL_CALL Content::abort( sal_Int32 /*CommandId*/ )
throw( uno::RuntimeException )
{
}
@@ -861,9 +861,9 @@ void Content::queryChildren( ContentRefList& rChildren )
m_xProvider->queryExistingContents( aAllContents );
rtl::OUString aURL = m_xIdentifier->getContentIdentifier();
- sal_Int32 nPos = aURL.lastIndexOf( '/' );
+ sal_Int32 nURLPos = aURL.lastIndexOf( '/' );
- if ( nPos != ( aURL.getLength() - 1 ) )
+ if ( nURLPos != ( aURL.getLength() - 1 ) )
{
// No trailing slash found. Append.
aURL += rtl::OUString::createFromAscii( "/" );