summaryrefslogtreecommitdiff
path: root/ucbhelper/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 11:11:33 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 11:11:33 +0000
commitf653663427a98be67c400c111c87d90046ef04a3 (patch)
treed24f3681882dc8bdd982671dc16bdf7d70bf4cf6 /ucbhelper/source
parente45b603684b105372412e27c1246617d342fdee9 (diff)
INTEGRATION: CWS warnings01 (1.30.22); FILE MERGED
2006/01/25 17:41:20 sb 1.30.22.3: RESYNC: (1.31-1.32); FILE MERGED 2005/09/22 18:58:44 sb 1.30.22.2: RESYNC: (1.30-1.31); FILE MERGED 2005/09/08 08:48:29 sb 1.30.22.1: #i53898# Made code warning-free.
Diffstat (limited to 'ucbhelper/source')
-rw-r--r--ucbhelper/source/client/content.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx
index b2ca25c5d0e6..9f362b0a2a3d 100644
--- a/ucbhelper/source/client/content.cxx
+++ b/ucbhelper/source/client/content.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: content.cxx,v $
*
- * $Revision: 1.32 $
+ * $Revision: 1.33 $
*
- * last change: $Author: obo $ $Date: 2006-01-20 10:11:05 $
+ * last change: $Author: hr $ $Date: 2006-06-19 12:11:33 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -185,7 +185,7 @@ public:
};
sal_Int32 EmptyInputStream::readBytes(
- Sequence< sal_Int8 > & data, sal_Int32 nBytesToRead )
+ Sequence< sal_Int8 > & data, sal_Int32 )
throw (IOException, RuntimeException)
{
data.realloc( 0 );
@@ -193,14 +193,14 @@ sal_Int32 EmptyInputStream::readBytes(
}
sal_Int32 EmptyInputStream::readSomeBytes(
- Sequence< sal_Int8 > & data, sal_Int32 nMaxBytesToRead )
+ Sequence< sal_Int8 > & data, sal_Int32 )
throw (IOException, RuntimeException)
{
data.realloc( 0 );
return 0;
}
-void EmptyInputStream::skipBytes( sal_Int32 nBytesToSkip )
+void EmptyInputStream::skipBytes( sal_Int32 )
throw (IOException, RuntimeException)
{
}