From c6747ee3a9f02cfbb1a89572180d7bb7ee5be9eb Mon Sep 17 00:00:00 2001 From: Thorsten Behrens Date: Wed, 15 May 2013 09:31:38 +0200 Subject: Use upper camel case for class names in xmloff. Align multiimagehelper with module standard. Change-Id: I70a4dbc66a0d127b9bf04d1e8db694d3526b21d7 --- xmloff/source/core/xmlmultiimagehelper.cxx | 8 ++++---- xmloff/source/draw/ximpshap.cxx | 2 +- xmloff/source/draw/ximpshap.hxx | 2 +- xmloff/source/text/XMLTextFrameContext.cxx | 2 +- xmloff/source/text/XMLTextFrameContext.hxx | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) (limited to 'xmloff') diff --git a/xmloff/source/core/xmlmultiimagehelper.cxx b/xmloff/source/core/xmlmultiimagehelper.cxx index 3d2dc778ce74..51597208992f 100644 --- a/xmloff/source/core/xmlmultiimagehelper.cxx +++ b/xmloff/source/core/xmlmultiimagehelper.cxx @@ -74,13 +74,13 @@ namespace ////////////////////////////////////////////////////////////////////////////// -multiImageImportHelper::multiImageImportHelper() +MultiImageImportHelper::MultiImageImportHelper() : maImplContextVector(), mbSupportsMultipleContents(false) { } -multiImageImportHelper::~multiImageImportHelper() +MultiImageImportHelper::~MultiImageImportHelper() { while(!maImplContextVector.empty()) { @@ -89,7 +89,7 @@ multiImageImportHelper::~multiImageImportHelper() } } -const SvXMLImportContext* multiImageImportHelper::solveMultipleImages() +const SvXMLImportContext* MultiImageImportHelper::solveMultipleImages() { const SvXMLImportContext* pContext(0); if(maImplContextVector.size() > 1) @@ -137,7 +137,7 @@ const SvXMLImportContext* multiImageImportHelper::solveMultipleImages() return pContext; } -void multiImageImportHelper::addContent(const SvXMLImportContext& rSvXMLImportContext) +void MultiImageImportHelper::addContent(const SvXMLImportContext& rSvXMLImportContext) { if(dynamic_cast< const SvXMLImportContext* >(&rSvXMLImportContext)) { diff --git a/xmloff/source/draw/ximpshap.cxx b/xmloff/source/draw/ximpshap.cxx index 81c91a18fdf2..75dae5d23e74 100644 --- a/xmloff/source/draw/ximpshap.cxx +++ b/xmloff/source/draw/ximpshap.cxx @@ -3347,7 +3347,7 @@ SdXMLFrameShapeContext::SdXMLFrameShapeContext( SvXMLImport& rImport, sal_uInt16 com::sun::star::uno::Reference< com::sun::star::drawing::XShapes >& rShapes, sal_Bool bTemporaryShape) : SdXMLShapeContext( rImport, nPrfx, rLocalName, xAttrList, rShapes, bTemporaryShape ), - multiImageImportHelper(), + MultiImageImportHelper(), mbSupportsReplacement( sal_False ), mxImplContext(), mxReplImplContext() diff --git a/xmloff/source/draw/ximpshap.hxx b/xmloff/source/draw/ximpshap.hxx index 949c70b41a7f..4d64a63e467a 100644 --- a/xmloff/source/draw/ximpshap.hxx +++ b/xmloff/source/draw/ximpshap.hxx @@ -570,7 +570,7 @@ public: ////////////////////////////////////////////////////////////////////////////// // draw:-frame -class SdXMLFrameShapeContext : public SdXMLShapeContext, public multiImageImportHelper +class SdXMLFrameShapeContext : public SdXMLShapeContext, public MultiImageImportHelper { private: sal_Bool mbSupportsReplacement; diff --git a/xmloff/source/text/XMLTextFrameContext.cxx b/xmloff/source/text/XMLTextFrameContext.cxx index 826b9e8c3e6c..4c268e6d303c 100644 --- a/xmloff/source/text/XMLTextFrameContext.cxx +++ b/xmloff/source/text/XMLTextFrameContext.cxx @@ -1333,7 +1333,7 @@ XMLTextFrameContext::XMLTextFrameContext( const Reference< XAttributeList > & xAttrList, TextContentAnchorType eATyp ) : SvXMLImportContext( rImport, nPrfx, rLName ) -, multiImageImportHelper() +, MultiImageImportHelper() , m_xAttrList( new SvXMLAttributeList( xAttrList ) ) , m_pHyperlink( 0 ) // Implement Title/Description Elements UI (#i73249#) diff --git a/xmloff/source/text/XMLTextFrameContext.hxx b/xmloff/source/text/XMLTextFrameContext.hxx index 818b3069222b..4c0167186e97 100644 --- a/xmloff/source/text/XMLTextFrameContext.hxx +++ b/xmloff/source/text/XMLTextFrameContext.hxx @@ -30,7 +30,7 @@ namespace com { namespace sun { namespace star { class XMLTextFrameContextHyperlink_Impl; -class XMLTextFrameContext : public SvXMLImportContext, public multiImageImportHelper +class XMLTextFrameContext : public SvXMLImportContext, public MultiImageImportHelper { ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > m_xAttrList; -- cgit