From 4230ce2b6d162bccfc2f26c3b35dddcb1f7f589a Mon Sep 17 00:00:00 2001 From: Ivo Hinkelmann Date: Mon, 14 Jan 2008 14:05:07 +0000 Subject: INTEGRATION: CWS wae4extensions (1.8.192); FILE MERGED 2007/09/27 10:20:02 fs 1.8.192.1: #i81612# warning-free code --- extensions/source/svg/svgprinter.cxx | 12 ++++++------ extensions/source/svg/svgwriter.cxx | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'extensions/source/svg') diff --git a/extensions/source/svg/svgprinter.cxx b/extensions/source/svg/svgprinter.cxx index a5867280ffd9..b9c298cf83ab 100644 --- a/extensions/source/svg/svgprinter.cxx +++ b/extensions/source/svg/svgprinter.cxx @@ -4,9 +4,9 @@ * * $RCSfile: svgprinter.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: obo $ $Date: 2006-09-16 13:29:14 $ + * last change: $Author: ihi $ $Date: 2008-01-14 15:04:42 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -79,11 +79,11 @@ private: protected: virtual void _ExportMeta() {} - virtual void _ExportStyles( BOOL bUsed ) {} + virtual void _ExportStyles( BOOL /*bUsed*/ ) {} virtual void _ExportAutoStyles() {} virtual void _ExportContent() {} virtual void _ExportMasterStyles() {} - virtual sal_uInt32 exportDoc( enum ::xmloff::token::XMLTokenEnum eClass = ::xmloff::token::XML_TOKEN_INVALID ) { return 0; } + virtual sal_uInt32 exportDoc( enum ::xmloff::token::XMLTokenEnum eClass = ::xmloff::token::XML_TOKEN_INVALID ) { (void)eClass; return 0; } public: @@ -109,8 +109,8 @@ SVGPrinterExport::SVGPrinterExport( const REF( NMSP_SAX::XDocumentHandler )& rxHandler, const JobSetup& rSetup, const NMSP_RTL::OUString& rJobName, - sal_uInt32 nCopies, - sal_Bool bCollate ) + sal_uInt32 /*nCopies*/, + sal_Bool /*bCollate*/ ) : SvXMLExport( xServiceFactory, NMSP_RTL::OUString(), rxHandler ), mpVDev( NULL ), mnPage( 0 ) diff --git a/extensions/source/svg/svgwriter.cxx b/extensions/source/svg/svgwriter.cxx index 002799d7a30d..8c31338a75b3 100644 --- a/extensions/source/svg/svgwriter.cxx +++ b/extensions/source/svg/svgwriter.cxx @@ -4,9 +4,9 @@ * * $RCSfile: svgwriter.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: obo $ $Date: 2006-09-16 13:29:42 $ + * last change: $Author: ihi $ $Date: 2008-01-14 15:05:07 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -53,11 +53,11 @@ private: protected: virtual void _ExportMeta() {} - virtual void _ExportStyles( BOOL bUsed ) {} + virtual void _ExportStyles( BOOL /*bUsed*/ ) {} virtual void _ExportAutoStyles() {} virtual void _ExportContent() {} virtual void _ExportMasterStyles() {} - virtual sal_uInt32 exportDoc( enum ::xmloff::token::XMLTokenEnum eClass ) { return 0; } + virtual sal_uInt32 exportDoc( enum ::xmloff::token::XMLTokenEnum /*eClass*/ ) { return 0; } public: -- cgit