diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:35:56 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:35:56 +0000 |
commit | c25dc5c735052aa6212058115faae8efcf8792d2 (patch) | |
tree | eca0cd62e449da0994f2dd39c3d07cae6c549717 /ucb | |
parent | 5cd26e992e6a32ad2b65953078d806faacfc6696 (diff) |
INTEGRATION: CWS warnings01 (1.7.10); FILE MERGED
2006/04/07 21:26:54 sb 1.7.10.4: RESYNC: (1.8-1.10); FILE MERGED
2006/03/10 15:40:14 sb 1.7.10.3: #i53898# Made code warning-free.
2006/01/25 22:16:49 sb 1.7.10.2: RESYNC: (1.7-1.8); FILE MERGED
2005/11/10 17:15:27 pl 1.7.10.1: #i55991# removed warnings
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/LockSequence.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ucb/source/ucp/webdav/LockSequence.cxx b/ucb/source/ucp/webdav/LockSequence.cxx index 427d6bfec71f..a57811066c7c 100644 --- a/ucb/source/ucp/webdav/LockSequence.cxx +++ b/ucb/source/ucp/webdav/LockSequence.cxx @@ -4,9 +4,9 @@ * * $RCSfile: LockSequence.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: rt $ $Date: 2006-02-09 14:25:40 $ + * last change: $Author: hr $ $Date: 2006-06-20 05:35:56 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -80,11 +80,11 @@ struct LockSequenceParseContext ////////////////////////////////////////////////////////////////////////// extern "C" int LockSequence_startelement_callback( - void *userdata, + void *, int parent, const char *nspace, const char *name, - const char **atts ) + const char ** ) { if ( ( name != 0 ) && ( ( nspace == 0 ) || ( strcmp( nspace, "" ) == 0 ) ) ) @@ -242,8 +242,8 @@ extern "C" int LockSequence_chardata_callback( extern "C" int LockSequence_endelement_callback( void *userdata, int state, - const char *nspace, - const char *name ) + const char *, + const char * ) { LockSequenceParseContext * pCtx = static_cast< LockSequenceParseContext * >( userdata ); |