diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-09-27 10:38:42 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-09-27 10:38:42 +0000 |
commit | cb9eb819e77d55237fb1b5d8235ac5ff34b7b03a (patch) | |
tree | 506a4b0635aee6cf6e12de310e21d7aeba7fc04a /sw/source/ui/dialog/swwrtshitem.cxx | |
parent | 806c6b157ee07c60b4466d56fc5e90348ffa7540 (diff) |
INTEGRATION: CWS swwarnings (1.6.222); FILE MERGED
2007/03/26 12:08:55 tl 1.6.222.1: #i69287# warning-free code
Diffstat (limited to 'sw/source/ui/dialog/swwrtshitem.cxx')
-rw-r--r-- | sw/source/ui/dialog/swwrtshitem.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/dialog/swwrtshitem.cxx b/sw/source/ui/dialog/swwrtshitem.cxx index 25dc882557..8aeafc7514 100644 --- a/sw/source/ui/dialog/swwrtshitem.cxx +++ b/sw/source/ui/dialog/swwrtshitem.cxx @@ -4,9 +4,9 @@ * * $RCSfile: swwrtshitem.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: obo $ $Date: 2006-09-16 22:50:52 $ + * last change: $Author: hr $ $Date: 2007-09-27 11:38:42 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -37,8 +37,8 @@ #include "precompiled_sw.hxx" #include "swwrtshitem.hxx" TYPEINIT1(SwWrtShellItem,SfxPoolItem); -SwWrtShellItem::SwWrtShellItem( USHORT nWhich, SwWrtShell* pSh ) - : SfxPoolItem( nWhich ), pWrtSh( pSh ) +SwWrtShellItem::SwWrtShellItem( USHORT _nWhich, SwWrtShell* pSh ) + : SfxPoolItem( _nWhich ), pWrtSh( pSh ) { } @@ -53,7 +53,7 @@ int SwWrtShellItem::operator==( const SfxPoolItem& rItem) const return ((SwWrtShellItem&)rItem).pWrtSh == pWrtSh; } -SfxPoolItem* SwWrtShellItem::Clone( SfxItemPool *pPool ) const +SfxPoolItem* SwWrtShellItem::Clone( SfxItemPool * /*pPool*/ ) const { return new SwWrtShellItem( *this ); } |