diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-25 19:37:34 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-26 09:37:22 -0600 |
commit | 40961d7bcdb57a13115928a9c21d48ffa6e93aee (patch) | |
tree | eb4024a919b7ae95755573c4b638e47672f785a0 | |
parent | 75c8d59ddd6ca19ff312c8e507ef05d969704d5a (diff) |
Remove visual noise from oox
Change-Id: Ie25838f20f00dc32d9d22959308c118cef688e94
Reviewed-on: https://gerrit.libreoffice.org/8288
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
120 files changed, 594 insertions, 603 deletions
diff --git a/oox/source/core/binarycodec.cxx b/oox/source/core/binarycodec.cxx index 47784fb50309..471c92d47f05 100644 --- a/oox/source/core/binarycodec.cxx +++ b/oox/source/core/binarycodec.cxx @@ -31,7 +31,7 @@ using namespace ::com::sun::star; namespace oox { namespace core { -// ============================================================================ + namespace { @@ -106,7 +106,7 @@ sal_uInt16 lclGetHash( const sal_uInt8* pnPassData, sal_Int32 nBufferSize ) } // namespace -// ============================================================================ + sal_uInt16 CodecHelper::getPasswordHash( const AttributeList& rAttribs, sal_Int32 nElement ) { @@ -115,7 +115,7 @@ sal_uInt16 CodecHelper::getPasswordHash( const AttributeList& rAttribs, sal_Int3 return static_cast< sal_uInt16 >( ((0 <= nPasswordHash) && (nPasswordHash <= SAL_MAX_UINT16)) ? nPasswordHash : 0 ); } -// ============================================================================ + BinaryCodec_XOR::BinaryCodec_XOR( CodecType eCodecType ) : meCodecType( eCodecType ), @@ -259,7 +259,7 @@ bool BinaryCodec_XOR::skip( sal_Int32 nBytes ) return true; } -// ============================================================================ + BinaryCodec_RCF::BinaryCodec_RCF() { @@ -413,7 +413,7 @@ bool BinaryCodec_RCF::skip( sal_Int32 nBytes ) return bResult; } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/contexthandler.cxx b/oox/source/core/contexthandler.cxx index 2d41797631f6..83567dab2a3e 100644 --- a/oox/source/core/contexthandler.cxx +++ b/oox/source/core/contexthandler.cxx @@ -24,13 +24,13 @@ namespace oox { namespace core { -// ============================================================================ + using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; -// ============================================================================ + ContextHandler::ContextHandler( const ContextHandler& rParent ) : ContextHandler_BASE(), @@ -137,7 +137,7 @@ void ContextHandler::endRecord( sal_Int32 ) { } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/contexthandler2.cxx b/oox/source/core/contexthandler2.cxx index 9c7a820ec613..fd0c0218139e 100644 --- a/oox/source/core/contexthandler2.cxx +++ b/oox/source/core/contexthandler2.cxx @@ -23,13 +23,13 @@ namespace oox { namespace core { -// ============================================================================ + using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; -// ============================================================================ + /** Information about a processed element. */ struct ElementInfo @@ -42,7 +42,7 @@ struct ElementInfo ElementInfo( sal_Int32 nElement ) : maChars( 0 ), mnElement( nElement ), mbTrimSpaces(false) {} }; -// ============================================================================ + ContextHandler2Helper::ContextHandler2Helper( bool bEnableTrimSpace ) : mxContextStack( new ContextStack ), @@ -179,7 +179,7 @@ void ContextHandler2Helper::processCollectedChars() } } -// ============================================================================ + ContextHandler2::ContextHandler2( ContextHandler2Helper& rParent ) : ContextHandler( dynamic_cast< ContextHandler& >( rParent ) ), @@ -264,7 +264,7 @@ void ContextHandler2::onEndRecord() { } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/fastparser.cxx b/oox/source/core/fastparser.cxx index af79760e0bfe..6eeefb6e23f6 100644 --- a/oox/source/core/fastparser.cxx +++ b/oox/source/core/fastparser.cxx @@ -33,7 +33,7 @@ namespace oox { namespace core { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::lang; @@ -41,7 +41,7 @@ using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; -// ============================================================================ + namespace { @@ -68,7 +68,7 @@ InputStreamCloseGuard::~InputStreamCloseGuard() } // namespace -// ============================================================================ + FastParser::FastParser( const Reference< XComponentContext >& rxContext ) throw( RuntimeException ) : mrNamespaceMap( StaticNamespaceMap::get() ), @@ -156,7 +156,7 @@ sal_Int32 FastParser::getNamespaceId( const OUString& rUrl ) return 0; } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/fasttokenhandler.cxx b/oox/source/core/fasttokenhandler.cxx index 510240863845..117868a0c476 100644 --- a/oox/source/core/fasttokenhandler.cxx +++ b/oox/source/core/fasttokenhandler.cxx @@ -97,7 +97,7 @@ sal_Int32 FastTokenHandler::getTokenDirect( const char *pToken, sal_Int32 nLengt return mrTokenMap.getTokenFromUTF8( pToken, nLength ); } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx index 0c68966fe815..11a60ca6408e 100644 --- a/oox/source/core/filterdetect.cxx +++ b/oox/source/core/filterdetect.cxx @@ -438,7 +438,7 @@ OUString SAL_CALL FilterDetect::detect( Sequence< PropertyValue >& rMediaDescSeq return aFilterName; } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/fragmenthandler.cxx b/oox/source/core/fragmenthandler.cxx index f390698be446..632e6b6e70f1 100644 --- a/oox/source/core/fragmenthandler.cxx +++ b/oox/source/core/fragmenthandler.cxx @@ -24,14 +24,14 @@ namespace oox { namespace core { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; -// ============================================================================ + FragmentBaseData::FragmentBaseData( XmlFilterBase& rFilter, const OUString& rFragmentPath, RelationsRef xRelations ) : mrFilter( rFilter ), @@ -40,7 +40,7 @@ FragmentBaseData::FragmentBaseData( XmlFilterBase& rFilter, const OUString& rFra { } -// ============================================================================ + FragmentHandler::FragmentHandler( XmlFilterBase& rFilter, const OUString& rFragmentPath ) : FragmentHandler_BASE( FragmentBaseDataRef( new FragmentBaseData( rFilter, rFragmentPath, rFilter.importRelations( rFragmentPath ) ) ) ) @@ -126,7 +126,7 @@ const RecordInfo* FragmentHandler::getRecordInfos() const return 0; } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/fragmenthandler2.cxx b/oox/source/core/fragmenthandler2.cxx index 8133b7382133..5d0c2068effc 100644 --- a/oox/source/core/fragmenthandler2.cxx +++ b/oox/source/core/fragmenthandler2.cxx @@ -23,7 +23,7 @@ namespace oox { namespace core { -// ============================================================================ + using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; @@ -32,7 +32,7 @@ using namespace ::com::sun::star::xml::sax; using ::com::sun::star::uno::Sequence; -// ============================================================================ + FragmentHandler2::FragmentHandler2( XmlFilterBase& rFilter, const OUString& rFragmentPath, bool bEnableTrimSpace ) : FragmentHandler( rFilter, rFragmentPath ), @@ -200,7 +200,7 @@ void FragmentHandler2::finalizeImport() { } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/recordparser.cxx b/oox/source/core/recordparser.cxx index 68fc0c821750..73d5bdd52212 100644 --- a/oox/source/core/recordparser.cxx +++ b/oox/source/core/recordparser.cxx @@ -28,7 +28,7 @@ namespace oox { namespace core { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::lang; @@ -36,7 +36,7 @@ using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; -// ============================================================================ + namespace prv { @@ -94,7 +94,7 @@ OUString SAL_CALL Locator::getSystemId() throw( RuntimeException ) return mpParser->getInputSource().maSystemId; } -// ============================================================================ + class ContextStack { @@ -163,7 +163,7 @@ void ContextStack::popContext() } // namespace prv -// ============================================================================ + namespace { @@ -213,7 +213,7 @@ bool lclReadNextRecord( sal_Int32& ornRecId, StreamDataSequence& orData, BinaryI } // namespace -// ============================================================================ + RecordParser::RecordParser() { @@ -335,7 +335,7 @@ const RecordInfo* RecordParser::getEndRecordInfo( sal_Int32 nRecId ) const return (aIt == maEndMap.end()) ? 0 : &aIt->second; } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/relations.cxx b/oox/source/core/relations.cxx index b00fcea313e2..5b726a514e06 100644 --- a/oox/source/core/relations.cxx +++ b/oox/source/core/relations.cxx @@ -25,10 +25,10 @@ namespace oox { namespace core { -// ============================================================================ -// ============================================================================ + + namespace { @@ -45,7 +45,7 @@ OUString lclAppendFileName( const OUString& rPath, const OUString& rFileName ) } // namespace -// ============================================================================ + Relations::Relations( const OUString& rFragmentPath ) : maFragmentPath( rFragmentPath ) @@ -132,7 +132,7 @@ OUString Relations::getFragmentPathFromFirstType( const OUString& rType ) const return pRelation ? getFragmentPathFromRelation( *pRelation ) : OUString(); } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/relationshandler.cxx b/oox/source/core/relationshandler.cxx index 73005eb216f8..136169766afb 100644 --- a/oox/source/core/relationshandler.cxx +++ b/oox/source/core/relationshandler.cxx @@ -25,13 +25,13 @@ namespace oox { namespace core { -// ============================================================================ + using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; -// ============================================================================ + namespace { @@ -53,7 +53,7 @@ OUString lclGetRelationsPath( const OUString& rFragmentPath ) } // namespace -// ============================================================================ + RelationsFragment::RelationsFragment( XmlFilterBase& rFilter, RelationsRef xRelations ) : FragmentHandler( rFilter, lclGetRelationsPath( xRelations->getFragmentPath() ), xRelations ), @@ -94,7 +94,7 @@ Reference< XFastContextHandler > RelationsFragment::createFastChildContext( return xRet; } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/core/services.cxx b/oox/source/core/services.cxx index d62f159f6744..d655b3dd39e4 100644 --- a/oox/source/core/services.cxx +++ b/oox/source/core/services.cxx @@ -41,7 +41,7 @@ namespace oox { #undef DECLARE_FUNCTIONS -// ============================================================================ + namespace { diff --git a/oox/source/core/xmlfilterbase.cxx b/oox/source/core/xmlfilterbase.cxx index 29221c1c2120..c9837f604c65 100644 --- a/oox/source/core/xmlfilterbase.cxx +++ b/oox/source/core/xmlfilterbase.cxx @@ -742,7 +742,7 @@ StorageRef XmlFilterBase::implCreateStorage( const Reference< XStream >& rxOutSt return StorageRef( new ZipStorage( getComponentContext(), rxOutStream ) ); } -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/docprop/docprophandler.hxx b/oox/source/docprop/docprophandler.hxx index 371f5b4c27ca..27bbe36a25a0 100644 --- a/oox/source/docprop/docprophandler.hxx +++ b/oox/source/docprop/docprophandler.hxx @@ -84,7 +84,7 @@ public: }; -// ============================================================================ + } // namespace core } // namespace oox diff --git a/oox/source/docprop/ooxmldocpropimport.cxx b/oox/source/docprop/ooxmldocpropimport.cxx index 2361bd1ccd74..e826d03a4db1 100644 --- a/oox/source/docprop/ooxmldocpropimport.cxx +++ b/oox/source/docprop/ooxmldocpropimport.cxx @@ -161,7 +161,7 @@ void SAL_CALL DocumentPropertiesImport::importProperties( } } -// ============================================================================ + } // namespace docprop } // namespace oox diff --git a/oox/source/docprop/ooxmldocpropimport.hxx b/oox/source/docprop/ooxmldocpropimport.hxx index bd20b335dc7b..473a275afb04 100644 --- a/oox/source/docprop/ooxmldocpropimport.hxx +++ b/oox/source/docprop/ooxmldocpropimport.hxx @@ -29,7 +29,7 @@ namespace oox { namespace docprop { -// ============================================================================ + class DocumentPropertiesImport : public ::cppu::WeakImplHelper2< @@ -55,7 +55,7 @@ private: ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > mxContext; }; -// ============================================================================ + } // namespace docprop } // namespace oox diff --git a/oox/source/drawingml/chart/axiscontext.cxx b/oox/source/drawingml/chart/axiscontext.cxx index 2160354a5a91..783afb2b9ded 100644 --- a/oox/source/drawingml/chart/axiscontext.cxx +++ b/oox/source/drawingml/chart/axiscontext.cxx @@ -28,12 +28,12 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using ::oox::core::ContextHandlerRef; using ::oox::core::ContextHandler2Helper; -// ============================================================================ + AxisDispUnitsContext::AxisDispUnitsContext( ContextHandler2Helper& rParent, AxisDispUnitsModel& rModel ) : ContextBase< AxisDispUnitsModel >( rParent, rModel ) @@ -79,7 +79,7 @@ ContextHandlerRef AxisDispUnitsContext::onCreateContext( sal_Int32 nElement, con return 0; } -// ============================================================================ + AxisContextBase::AxisContextBase( ContextHandler2Helper& rParent, AxisModel& rModel ) : ContextBase< AxisModel >( rParent, rModel ) @@ -166,7 +166,7 @@ ContextHandlerRef AxisContextBase::onCreateContext( sal_Int32 nElement, const At return 0; } -// ============================================================================ + CatAxisContext::CatAxisContext( ContextHandler2Helper& rParent, AxisModel& rModel ) : AxisContextBase( rParent, rModel ) @@ -208,7 +208,7 @@ ContextHandlerRef CatAxisContext::onCreateContext( sal_Int32 nElement, const Att return AxisContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + DateAxisContext::DateAxisContext( ContextHandler2Helper& rParent, AxisModel& rModel ) : AxisContextBase( rParent, rModel ) @@ -249,7 +249,7 @@ ContextHandlerRef DateAxisContext::onCreateContext( sal_Int32 nElement, const At return AxisContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + SerAxisContext::SerAxisContext( ContextHandler2Helper& rParent, AxisModel& rModel ) : AxisContextBase( rParent, rModel ) @@ -274,7 +274,7 @@ ContextHandlerRef SerAxisContext::onCreateContext( sal_Int32 nElement, const Att return AxisContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + ValAxisContext::ValAxisContext( ContextHandler2Helper& rParent, AxisModel& rModel ) : AxisContextBase( rParent, rModel ) @@ -304,7 +304,7 @@ ContextHandlerRef ValAxisContext::onCreateContext( sal_Int32 nElement, const Att return AxisContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/axisconverter.cxx b/oox/source/drawingml/chart/axisconverter.cxx index 23e4829497c8..6767c3ee9f45 100644 --- a/oox/source/drawingml/chart/axisconverter.cxx +++ b/oox/source/drawingml/chart/axisconverter.cxx @@ -42,13 +42,13 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::com::sun::star::beans; using namespace ::com::sun::star::chart2; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -109,7 +109,7 @@ sal_Int32 lclGetTickMark( sal_Int32 nToken ) } // namespace -// ============================================================================ + AxisConverter::AxisConverter( const ConverterRoot& rParent, AxisModel& rModel ) : ConverterBase< AxisModel >( rParent, rModel ) @@ -362,7 +362,7 @@ void AxisConverter::convertFromModel( const Reference< XCoordinateSystem >& rxCo } } -// ============================================================================ + AxisDispUnitsConverter::AxisDispUnitsConverter( const ConverterRoot& rParent, AxisDispUnitsModel& rModel ) : ConverterBase< AxisDispUnitsModel >( rParent, rModel ) @@ -382,7 +382,7 @@ void AxisDispUnitsConverter::convertFromModel( const Reference< XAxis >& rxAxis aPropSet.setProperty( PROP_BuiltInUnit, mrModel.mnBuiltInUnit ); } } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/axismodel.cxx b/oox/source/drawingml/chart/axismodel.cxx index e91c2ec8eb7e..244741459718 100644 --- a/oox/source/drawingml/chart/axismodel.cxx +++ b/oox/source/drawingml/chart/axismodel.cxx @@ -23,7 +23,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + AxisDispUnitsModel::AxisDispUnitsModel() : mfCustomUnit( 0.0 ) @@ -34,7 +34,7 @@ AxisDispUnitsModel::~AxisDispUnitsModel() { } -// ============================================================================ + AxisModel::AxisModel( sal_Int32 nTypeId ) : mnAxisId( -1 ), @@ -63,7 +63,7 @@ AxisModel::~AxisModel() { } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/chartcontextbase.cxx b/oox/source/drawingml/chart/chartcontextbase.cxx index 6fe6d604f0fe..c4567c8cbcdd 100644 --- a/oox/source/drawingml/chart/chartcontextbase.cxx +++ b/oox/source/drawingml/chart/chartcontextbase.cxx @@ -26,12 +26,12 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using ::oox::core::ContextHandler2Helper; using ::oox::core::ContextHandlerRef; -// ============================================================================ + ShapePrWrapperContext::ShapePrWrapperContext( ContextHandler2Helper& rParent, Shape& rModel ) : ContextBase< Shape >( rParent, rModel ) @@ -47,7 +47,7 @@ ContextHandlerRef ShapePrWrapperContext::onCreateContext( sal_Int32 nElement, co return (isRootElement() && (nElement == C_TOKEN( spPr ))) ? new ShapePropertiesContext( *this, mrModel ) : 0; } -// ============================================================================ + LayoutContext::LayoutContext( ContextHandler2Helper& rParent, LayoutModel& rModel ) : ContextBase< LayoutModel >( rParent, rModel ) @@ -107,7 +107,7 @@ ContextHandlerRef LayoutContext::onCreateContext( sal_Int32 nElement, const Attr return 0; } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/chartconverter.cxx b/oox/source/drawingml/chart/chartconverter.cxx index 03eff1b50f06..b320e8aa9796 100644 --- a/oox/source/drawingml/chart/chartconverter.cxx +++ b/oox/source/drawingml/chart/chartconverter.cxx @@ -31,7 +31,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::chart2; @@ -41,7 +41,7 @@ using namespace ::com::sun::star::uno; using ::oox::core::XmlFilterBase; -// ============================================================================ + static const sal_Unicode API_TOKEN_ARRAY_OPEN = '{'; static const sal_Unicode API_TOKEN_ARRAY_CLOSE = '}'; @@ -85,7 +85,7 @@ static OUString lclGenerateApiArray( const Matrix< Any >& rMatrix ) return aBuffer.makeStringAndClear(); } -// ============================================================================ + ChartConverter::ChartConverter() { @@ -152,7 +152,7 @@ Reference< XDataSequence > ChartConverter::createDataSequence( const Reference< return 0; } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/chartdrawingfragment.cxx b/oox/source/drawingml/chart/chartdrawingfragment.cxx index 4f4660310d7d..929f70c9be13 100644 --- a/oox/source/drawingml/chart/chartdrawingfragment.cxx +++ b/oox/source/drawingml/chart/chartdrawingfragment.cxx @@ -29,14 +29,14 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::drawing; using namespace ::com::sun::star::uno; using namespace ::oox::core; -// ============================================================================ + ShapeAnchor::ShapeAnchor( bool bRelSize ) : mbRelSize( bRelSize ) @@ -109,7 +109,7 @@ EmuRectangle ShapeAnchor::calcAnchorRectEmu( const EmuRectangle& rChartRect ) co return aAnchorRect; } -// ============================================================================ + ChartDrawingFragment::ChartDrawingFragment( XmlFilterBase& rFilter, const OUString& rFragmentPath, const Reference< XShapes >& rxDrawPage, @@ -223,7 +223,7 @@ void ChartDrawingFragment::onEndElement() } } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/chartspaceconverter.cxx b/oox/source/drawingml/chart/chartspaceconverter.cxx index d6b09a44845e..e24388d5c00f 100644 --- a/oox/source/drawingml/chart/chartspaceconverter.cxx +++ b/oox/source/drawingml/chart/chartspaceconverter.cxx @@ -50,7 +50,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::com::sun::star::awt; using namespace ::com::sun::star::chart2; @@ -59,7 +59,7 @@ using namespace ::com::sun::star::drawing; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::util; -// ============================================================================ + ChartSpaceConverter::ChartSpaceConverter( const ConverterRoot& rParent, ChartSpaceModel& rModel ) : ConverterBase< ChartSpaceModel >( rParent, rModel ) @@ -221,7 +221,7 @@ void ChartSpaceConverter::convertFromModel( const Reference< XShapes >& rxExtern } } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/chartspacefragment.cxx b/oox/source/drawingml/chart/chartspacefragment.cxx index 03389f00ebdc..6e19f7740003 100644 --- a/oox/source/drawingml/chart/chartspacefragment.cxx +++ b/oox/source/drawingml/chart/chartspacefragment.cxx @@ -29,11 +29,11 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::oox::core; -// ============================================================================ + ChartSpaceFragment::ChartSpaceFragment( XmlFilterBase& rFilter, const OUString& rFragmentPath, ChartSpaceModel& rModel ) : FragmentBase< ChartSpaceModel >( rFilter, rFragmentPath, rModel ), @@ -119,7 +119,7 @@ ContextHandlerRef ChartSpaceFragment::onCreateContext( sal_Int32 nElement, const return 0; } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/chartspacemodel.cxx b/oox/source/drawingml/chart/chartspacemodel.cxx index 7bf4793e34bc..cf71f14a822c 100644 --- a/oox/source/drawingml/chart/chartspacemodel.cxx +++ b/oox/source/drawingml/chart/chartspacemodel.cxx @@ -23,7 +23,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + ChartSpaceModel::ChartSpaceModel() : mnDispBlanksAs( XML_gap ), // not zero as specified @@ -39,7 +39,7 @@ ChartSpaceModel::~ChartSpaceModel() { } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/converterbase.cxx b/oox/source/drawingml/chart/converterbase.cxx index 01296719f69b..c2d3771457b0 100644 --- a/oox/source/drawingml/chart/converterbase.cxx +++ b/oox/source/drawingml/chart/converterbase.cxx @@ -40,7 +40,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + namespace cssc = ::com::sun::star::chart; @@ -53,7 +53,7 @@ using namespace ::com::sun::star::uno; using ::oox::core::XmlFilterBase; -// ============================================================================ + namespace { @@ -143,7 +143,7 @@ OOX_DEFINEFUNC_GETAXISTITLESHAPE( lclGetSecYAxisTitleShape, XSecondAxisTitleSupp } // namespace -// ============================================================================ + struct ConverterData { @@ -210,7 +210,7 @@ ConverterData::~ConverterData() } } -// ============================================================================ + ConverterRoot::ConverterRoot( XmlFilterBase& rFilter, @@ -295,7 +295,7 @@ void ConverterRoot::convertTitlePositions() } } -// ============================================================================ + namespace { @@ -430,7 +430,7 @@ bool LayoutConverter::convertFromModel( const Reference< XShape >& rxShape, doub return false; } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/datasourcecontext.cxx b/oox/source/drawingml/chart/datasourcecontext.cxx index f4f6b95e0049..d310645c467e 100644 --- a/oox/source/drawingml/chart/datasourcecontext.cxx +++ b/oox/source/drawingml/chart/datasourcecontext.cxx @@ -25,12 +25,12 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using ::oox::core::ContextHandler2Helper; using ::oox::core::ContextHandlerRef; -// ============================================================================ + DoubleSequenceContext::DoubleSequenceContext( ContextHandler2Helper& rParent, DataSequenceModel& rModel ) : DataSequenceContextBase( rParent, rModel ), @@ -108,7 +108,7 @@ void DoubleSequenceContext::onCharacters( const OUString& rChars ) } } -// ============================================================================ + StringSequenceContext::StringSequenceContext( ContextHandler2Helper& rParent, DataSequenceModel& rModel ) : DataSequenceContextBase( rParent, rModel ) @@ -178,7 +178,7 @@ void StringSequenceContext::onCharacters( const OUString& rChars ) } } -// ============================================================================ + DataSourceContext::DataSourceContext( ContextHandler2Helper& rParent, DataSourceModel& rModel ) : ContextBase< DataSourceModel >( rParent, rModel ) @@ -227,7 +227,7 @@ ContextHandlerRef DataSourceContext::onCreateContext( sal_Int32 nElement, const return 0; } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/datasourceconverter.cxx b/oox/source/drawingml/chart/datasourceconverter.cxx index ea22348c3cc0..93166fbfd8be 100644 --- a/oox/source/drawingml/chart/datasourceconverter.cxx +++ b/oox/source/drawingml/chart/datasourceconverter.cxx @@ -28,12 +28,12 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::com::sun::star::chart2::data; using namespace ::com::sun::star::uno; -// ============================================================================ + DataSequenceConverter::DataSequenceConverter( const ConverterRoot& rParent, DataSequenceModel& rModel ) : ConverterBase< DataSequenceModel >( rParent, rModel ) @@ -87,7 +87,7 @@ Reference< XDataSequence > DataSequenceConverter::createDataSequence( const OUSt return xDataSeq; } -// ============================================================================ + DataSourceConverter::DataSourceConverter( const ConverterRoot& rParent, DataSourceModel& rModel ) : ConverterBase< DataSourceModel >( rParent, rModel ) @@ -109,7 +109,7 @@ Reference< XDataSequence > DataSourceConverter::createDataSequence( const OUStri return xDataSeq; } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/datasourcemodel.cxx b/oox/source/drawingml/chart/datasourcemodel.cxx index b7d0de39a989..190cce2e785f 100644 --- a/oox/source/drawingml/chart/datasourcemodel.cxx +++ b/oox/source/drawingml/chart/datasourcemodel.cxx @@ -23,7 +23,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + DataSequenceModel::DataSequenceModel() : mnPointCount( -1 ) @@ -34,7 +34,7 @@ DataSequenceModel::~DataSequenceModel() { } -// ============================================================================ + DataSourceModel::DataSourceModel() { @@ -44,7 +44,7 @@ DataSourceModel::~DataSourceModel() { } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/modelbase.cxx b/oox/source/drawingml/chart/modelbase.cxx index b3499456931d..d1e87ebb7830 100644 --- a/oox/source/drawingml/chart/modelbase.cxx +++ b/oox/source/drawingml/chart/modelbase.cxx @@ -38,7 +38,7 @@ void NumberFormat::setAttributes( const AttributeList& rAttribs ) mbSourceLinked = rAttribs.getBool( XML_sourceLinked, false ); } -// ============================================================================ + LayoutModel::LayoutModel() : mfX( 0.0 ), @@ -58,7 +58,7 @@ LayoutModel::~LayoutModel() { } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/objectformatter.cxx b/oox/source/drawingml/chart/objectformatter.cxx index c328f23461e5..297ad7b4df6b 100644 --- a/oox/source/drawingml/chart/objectformatter.cxx +++ b/oox/source/drawingml/chart/objectformatter.cxx @@ -37,7 +37,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::com::sun::star::chart2; using namespace ::com::sun::star::frame; @@ -48,7 +48,7 @@ using namespace ::com::sun::star::util; using ::oox::core::XmlFilterBase; -// ============================================================================ + namespace { @@ -563,7 +563,7 @@ void lclConvertPictureOptions( FillProperties& orFillProps, const PictureOptions } // namespace -// ============================================================================ + struct ObjectFormatterData; @@ -744,7 +744,7 @@ struct ObjectFormatterData ObjectTypeFormatter* getTypeFormatter( ObjectType eObjType ); }; -// ============================================================================ + DetailFormatterBase::DetailFormatterBase( ObjectFormatterData& rData, const AutoFormatEntry* pAutoFormatEntry ) : mrData( rData ), @@ -836,7 +836,7 @@ sal_Int32 DetailFormatterBase::getSchemeColor( sal_Int32 nColorToken, sal_Int32 return aColor.getColor( mrData.mrFilter.getGraphicHelper() ); } -// ============================================================================ + LineFormatter::LineFormatter( ObjectFormatterData& rData, const AutoFormatEntry* pAutoFormatEntry ) : DetailFormatterBase( rData, pAutoFormatEntry ) @@ -864,7 +864,7 @@ void LineFormatter::convertFormatting( ShapePropertyMap& rPropMap, const ModelRe aLineProps.pushToPropMap( rPropMap, mrData.mrFilter.getGraphicHelper(), getPhColor( nSeriesIdx ) ); } -// ============================================================================ + FillFormatter::FillFormatter( ObjectFormatterData& rData, const AutoFormatEntry* pAutoFormatEntry ) : DetailFormatterBase( rData, pAutoFormatEntry ) @@ -891,7 +891,7 @@ void FillFormatter::convertFormatting( ShapePropertyMap& rPropMap, const ModelRe aFillProps.pushToPropMap( rPropMap, mrData.mrFilter.getGraphicHelper(), 0, getPhColor( nSeriesIdx ) ); } -// ============================================================================ + EffectFormatter::EffectFormatter( ObjectFormatterData& rData, const AutoFormatEntry* pAutoFormatEntry ) : DetailFormatterBase( rData, pAutoFormatEntry ) @@ -902,7 +902,7 @@ void EffectFormatter::convertFormatting( ShapePropertyMap& /*rPropMap*/, const M { } -// ============================================================================ + namespace { @@ -953,7 +953,7 @@ void TextFormatter::convertFormatting( PropertySet& rPropSet, const ModelRef< Te convertFormatting( rPropSet, lclGetTextProperties( rxTextProp ) ); } -// ============================================================================ + ObjectTypeFormatter::ObjectTypeFormatter( ObjectFormatterData& rData, const ObjectTypeFormatEntry& rEntry, const ChartSpaceModel& rChartSpace ) : maLineFormatter( rData, lclGetAutoFormatEntry( rEntry.mpAutoLines, rChartSpace.mnStyle ) ), @@ -1000,7 +1000,7 @@ void ObjectTypeFormatter::convertAutomaticFill( PropertySet& rPropSet, sal_Int32 rPropSet.setProperties( aPropMap ); } -// ============================================================================ + ObjectFormatterData::ObjectFormatterData( const XmlFilterBase& rFilter, const Reference< XChartDocument >& rxChartDoc, const ChartSpaceModel& rChartSpace ) : mrFilter( rFilter ), @@ -1030,7 +1030,7 @@ ObjectTypeFormatter* ObjectFormatterData::getTypeFormatter( ObjectType eObjType return maTypeFormatters.get( eObjType ).get(); } -// ============================================================================ + ObjectFormatter::ObjectFormatter( const XmlFilterBase& rFilter, const Reference< XChartDocument >& rxChartDoc, const ChartSpaceModel& rChartSpace ) : mxData( new ObjectFormatterData( rFilter, rxChartDoc, rChartSpace ) ) @@ -1142,7 +1142,7 @@ bool ObjectFormatter::isAutomaticFill( const ModelRef< Shape >& rxShapeProp ) return !rxShapeProp || !rxShapeProp->getFillProperties().moFillType.has(); } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/plotareacontext.cxx b/oox/source/drawingml/chart/plotareacontext.cxx index 939bbc1cd16f..184bad7ce033 100644 --- a/oox/source/drawingml/chart/plotareacontext.cxx +++ b/oox/source/drawingml/chart/plotareacontext.cxx @@ -30,12 +30,12 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using ::oox::core::ContextHandler2Helper; using ::oox::core::ContextHandlerRef; -// ============================================================================ + View3DContext::View3DContext( ContextHandler2Helper& rParent, View3DModel& rModel ) : ContextBase< View3DModel >( rParent, rModel ) @@ -80,7 +80,7 @@ ContextHandlerRef View3DContext::onCreateContext( sal_Int32 nElement, const Attr return 0; } -// ============================================================================ + WallFloorContext::WallFloorContext( ContextHandler2Helper& rParent, WallFloorModel& rModel ) : ContextBase< WallFloorModel >( rParent, rModel ) @@ -111,7 +111,7 @@ ContextHandlerRef WallFloorContext::onCreateContext( sal_Int32 nElement, const A } -// ============================================================================ + DataTableContext::DataTableContext( ContextHandler2Helper& rParent, DataTableModel& rModel ) : ContextBase< DataTableModel >( rParent, rModel ) @@ -144,8 +144,8 @@ ContextHandlerRef DataTableContext::onCreateContext( sal_Int32 nElement, const A return 0; } -// ============================================================================ -// ============================================================================ + + PlotAreaContext::PlotAreaContext( ContextHandler2Helper& rParent, PlotAreaModel& rModel ) : ContextBase< PlotAreaModel >( rParent, rModel ) @@ -209,7 +209,7 @@ ContextHandlerRef PlotAreaContext::onCreateContext( sal_Int32 nElement, const At return 0; } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/plotareaconverter.cxx b/oox/source/drawingml/chart/plotareaconverter.cxx index 7244b6035906..54519d7335e5 100644 --- a/oox/source/drawingml/chart/plotareaconverter.cxx +++ b/oox/source/drawingml/chart/plotareaconverter.cxx @@ -35,13 +35,13 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::chart2; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -59,7 +59,7 @@ struct AxesSetModel inline ~AxesSetModel() {} }; -// ============================================================================ + /** Axes set converter. This is a helper class for the plot area converter. */ class AxesSetConverter : public ConverterBase< AxesSetModel > @@ -194,7 +194,7 @@ void AxesSetConverter::convertFromModel( const Reference< XDiagram >& rxDiagram, } // namespace -// ============================================================================ + View3DConverter::View3DConverter( const ConverterRoot& rParent, View3DModel& rModel ) : ConverterBase< View3DModel >( rParent, rModel ) @@ -270,7 +270,7 @@ void View3DConverter::convertFromModel( const Reference< XDiagram >& rxDiagram, aPropSet.setProperty( PROP_D3DSceneLightDirection2, cssd::Direction3D( 0.2, 0.4, 1.0 ) ); } -// ============================================================================ + WallFloorConverter::WallFloorConverter( const ConverterRoot& rParent, WallFloorModel& rModel ) : ConverterBase< WallFloorModel >( rParent, rModel ) @@ -297,7 +297,7 @@ void WallFloorConverter::convertFromModel( const Reference< XDiagram >& rxDiagra } } -// ============================================================================ + DataTableConverter::DataTableConverter( const ConverterRoot& rParent, DataTableModel& rModel ) : ConverterBase< DataTableModel >( rParent, rModel ) @@ -319,7 +319,7 @@ void DataTableConverter::convertFromModel( const Reference< XDiagram >& rxDiagra aPropSet.setProperty( PROP_DataTableOutline, mrModel.mbShowOutline ); } -// ============================================================================ + PlotAreaConverter::PlotAreaConverter( const ConverterRoot& rParent, PlotAreaModel& rModel ) : ConverterBase< PlotAreaModel >( rParent, rModel ), @@ -459,7 +459,7 @@ void PlotAreaConverter::convertPositionFromModel() } } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/plotareamodel.cxx b/oox/source/drawingml/chart/plotareamodel.cxx index 08133236611f..1bcdd3ddcc98 100644 --- a/oox/source/drawingml/chart/plotareamodel.cxx +++ b/oox/source/drawingml/chart/plotareamodel.cxx @@ -23,7 +23,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + View3DModel::View3DModel() : mnDepthPercent( 100 ), @@ -36,7 +36,7 @@ View3DModel::~View3DModel() { } -// ============================================================================ + WallFloorModel::WallFloorModel() { @@ -46,7 +46,7 @@ WallFloorModel::~WallFloorModel() { } -// ============================================================================ + DataTableModel::DataTableModel() : mbShowHBorder(false), @@ -59,7 +59,7 @@ DataTableModel::~DataTableModel() { } -// ============================================================================ + PlotAreaModel::PlotAreaModel() { @@ -69,7 +69,7 @@ PlotAreaModel::~PlotAreaModel() { } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/seriescontext.cxx b/oox/source/drawingml/chart/seriescontext.cxx index a85f2a75e909..4bf61e53d36e 100644 --- a/oox/source/drawingml/chart/seriescontext.cxx +++ b/oox/source/drawingml/chart/seriescontext.cxx @@ -29,13 +29,13 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using ::oox::core::ContextHandler2; using ::oox::core::ContextHandler2Helper; using ::oox::core::ContextHandlerRef; -// ============================================================================ + namespace { @@ -91,7 +91,7 @@ void lclDataLabelSharedCharacters( ContextHandler2& rContext, const OUString& rC } // namespace -// ============================================================================ + DataLabelContext::DataLabelContext( ContextHandler2Helper& rParent, DataLabelModel& rModel ) : ContextBase< DataLabelModel >( rParent, rModel ) @@ -122,7 +122,7 @@ void DataLabelContext::onCharacters( const OUString& rChars ) lclDataLabelSharedCharacters( *this, rChars, mrModel ); } -// ============================================================================ + DataLabelsContext::DataLabelsContext( ContextHandler2Helper& rParent, DataLabelsModel& rModel ) : ContextBase< DataLabelsModel >( rParent, rModel ) @@ -154,7 +154,7 @@ void DataLabelsContext::onCharacters( const OUString& rChars ) lclDataLabelSharedCharacters( *this, rChars, mrModel ); } -// ============================================================================ + PictureOptionsContext::PictureOptionsContext( ContextHandler2Helper& rParent, PictureOptionsModel& rModel ) : ContextBase< PictureOptionsModel >( rParent, rModel ) @@ -191,7 +191,7 @@ ContextHandlerRef PictureOptionsContext::onCreateContext( sal_Int32 nElement, co return 0; } -// ============================================================================ + ErrorBarContext::ErrorBarContext( ContextHandler2Helper& rParent, ErrorBarModel& rModel ) : ContextBase< ErrorBarModel >( rParent, rModel ) @@ -232,7 +232,7 @@ ContextHandlerRef ErrorBarContext::onCreateContext( sal_Int32 nElement, const At return 0; } -// ============================================================================ + TrendlineLabelContext::TrendlineLabelContext( ContextHandler2Helper& rParent, TrendlineLabelModel& rModel ) : ContextBase< TrendlineLabelModel >( rParent, rModel ) @@ -262,7 +262,7 @@ ContextHandlerRef TrendlineLabelContext::onCreateContext( sal_Int32 nElement, co return 0; } -// ============================================================================ + TrendlineContext::TrendlineContext( ContextHandler2Helper& rParent, TrendlineModel& rModel ) : ContextBase< TrendlineModel >( rParent, rModel ) @@ -319,7 +319,7 @@ void TrendlineContext::onCharacters( const OUString& rChars ) mrModel.maName = rChars; } -// ============================================================================ + DataPointContext::DataPointContext( ContextHandler2Helper& rParent, DataPointModel& rModel ) : ContextBase< DataPointModel >( rParent, rModel ) @@ -377,7 +377,7 @@ ContextHandlerRef DataPointContext::onCreateContext( sal_Int32 nElement, const A return 0; } -// ============================================================================ + SeriesContextBase::SeriesContextBase( ContextHandler2Helper& rParent, SeriesModel& rModel ) : ContextBase< SeriesModel >( rParent, rModel ) @@ -425,7 +425,7 @@ ContextHandlerRef SeriesContextBase::onCreateContext( sal_Int32 nElement, const return 0; } -// ============================================================================ + AreaSeriesContext::AreaSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) : SeriesContextBase( rParent, rModel ) @@ -461,7 +461,7 @@ ContextHandlerRef AreaSeriesContext::onCreateContext( sal_Int32 nElement, const return SeriesContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + BarSeriesContext::BarSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) : SeriesContextBase( rParent, rModel ) @@ -507,7 +507,7 @@ ContextHandlerRef BarSeriesContext::onCreateContext( sal_Int32 nElement, const A return SeriesContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + BubbleSeriesContext::BubbleSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) : SeriesContextBase( rParent, rModel ) @@ -553,7 +553,7 @@ ContextHandlerRef BubbleSeriesContext::onCreateContext( sal_Int32 nElement, cons return SeriesContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + LineSeriesContext::LineSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) : SeriesContextBase( rParent, rModel ) @@ -595,7 +595,7 @@ ContextHandlerRef LineSeriesContext::onCreateContext( sal_Int32 nElement, const return SeriesContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + PieSeriesContext::PieSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) : SeriesContextBase( rParent, rModel ) @@ -630,7 +630,7 @@ ContextHandlerRef PieSeriesContext::onCreateContext( sal_Int32 nElement, const A return SeriesContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + RadarSeriesContext::RadarSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) : SeriesContextBase( rParent, rModel ) @@ -668,7 +668,7 @@ ContextHandlerRef RadarSeriesContext::onCreateContext( sal_Int32 nElement, const return SeriesContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + ScatterSeriesContext::ScatterSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) : SeriesContextBase( rParent, rModel ) @@ -710,7 +710,7 @@ ContextHandlerRef ScatterSeriesContext::onCreateContext( sal_Int32 nElement, con return SeriesContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + SurfaceSeriesContext::SurfaceSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) : SeriesContextBase( rParent, rModel ) @@ -738,7 +738,7 @@ ContextHandlerRef SurfaceSeriesContext::onCreateContext( sal_Int32 nElement, con return SeriesContextBase::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/seriesconverter.cxx b/oox/source/drawingml/chart/seriesconverter.cxx index 668847ca1e59..240255c9016c 100644 --- a/oox/source/drawingml/chart/seriesconverter.cxx +++ b/oox/source/drawingml/chart/seriesconverter.cxx @@ -39,14 +39,14 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::com::sun::star::beans; using namespace ::com::sun::star::chart2; using namespace ::com::sun::star::chart2::data; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -168,7 +168,7 @@ void lclConvertLabelFormatting( PropertySet& rPropSet, ObjectFormatter& rFormatt } // namespace -// ============================================================================ + DataLabelConverter::DataLabelConverter( const ConverterRoot& rParent, DataLabelModel& rModel ) : ConverterBase< DataLabelModel >( rParent, rModel ) @@ -213,7 +213,7 @@ void DataLabelConverter::convertFromModel( const Reference< XDataSeries >& rxDat } } -// ============================================================================ + DataLabelsConverter::DataLabelsConverter( const ConverterRoot& rParent, DataLabelsModel& rModel ) : ConverterBase< DataLabelsModel >( rParent, rModel ) @@ -244,7 +244,7 @@ void DataLabelsConverter::convertFromModel( const Reference< XDataSeries >& rxDa } } -// ============================================================================ + ErrorBarConverter::ErrorBarConverter( const ConverterRoot& rParent, ErrorBarModel& rModel ) : ConverterBase< ErrorBarModel >( rParent, rModel ) @@ -372,7 +372,7 @@ Reference< XLabeledDataSequence > ErrorBarConverter::createLabeledDataSequence( return lclCreateLabeledDataSequence( *this, mrModel.maSources.get( eSourceType ).get(), aRole ); } -// ============================================================================ + TrendlineLabelConverter::TrendlineLabelConverter( const ConverterRoot& rParent, TrendlineLabelModel& rModel ) : ConverterBase< TrendlineLabelModel >( rParent, rModel ) @@ -389,7 +389,7 @@ void TrendlineLabelConverter::convertFromModel( PropertySet& rPropSet ) getFormatter().convertFormatting( rPropSet, mrModel.mxShapeProp, mrModel.mxTextProp, OBJECTTYPE_TRENDLINELABEL ); } -// ============================================================================ + TrendlineConverter::TrendlineConverter( const ConverterRoot& rParent, TrendlineModel& rModel ) : ConverterBase< TrendlineModel >( rParent, rModel ) @@ -479,7 +479,7 @@ void TrendlineConverter::convertFromModel( const Reference< XDataSeries >& rxDat } } -// ============================================================================ + DataPointConverter::DataPointConverter( const ConverterRoot& rParent, DataPointModel& rModel ) : ConverterBase< DataPointModel >( rParent, rModel ) @@ -519,7 +519,7 @@ void DataPointConverter::convertFromModel( const Reference< XDataSeries >& rxDat } } -// ============================================================================ + SeriesConverter::SeriesConverter( const ConverterRoot& rParent, SeriesModel& rModel ) : ConverterBase< SeriesModel >( rParent, rModel ) @@ -683,7 +683,7 @@ Reference< XLabeledDataSequence > SeriesConverter::createLabeledDataSequence( return lclCreateLabeledDataSequence( *this, pValues, rRole, pTitle ); } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/seriesmodel.cxx b/oox/source/drawingml/chart/seriesmodel.cxx index 4466d97da22b..fb67e2d9fd7f 100644 --- a/oox/source/drawingml/chart/seriesmodel.cxx +++ b/oox/source/drawingml/chart/seriesmodel.cxx @@ -23,7 +23,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + DataLabelModelBase::DataLabelModelBase() : mbDeleted( false ) @@ -34,7 +34,7 @@ DataLabelModelBase::~DataLabelModelBase() { } -// ============================================================================ + DataLabelModel::DataLabelModel() : mnIndex( -1 ) @@ -45,7 +45,7 @@ DataLabelModel::~DataLabelModel() { } -// ============================================================================ + DataLabelsModel::DataLabelsModel() : mbShowLeaderLines( false ) @@ -56,7 +56,7 @@ DataLabelsModel::~DataLabelsModel() { } -// ============================================================================ + PictureOptionsModel::PictureOptionsModel() : mfStackUnit( 1.0 ), @@ -71,7 +71,7 @@ PictureOptionsModel::~PictureOptionsModel() { } -// ============================================================================ + ErrorBarModel::ErrorBarModel() : mfValue( 0.0 ), @@ -86,7 +86,7 @@ ErrorBarModel::~ErrorBarModel() { } -// ============================================================================ + TrendlineLabelModel::TrendlineLabelModel() { @@ -96,7 +96,7 @@ TrendlineLabelModel::~TrendlineLabelModel() { } -// ============================================================================ + TrendlineModel::TrendlineModel() : mnOrder( 2 ), @@ -111,7 +111,7 @@ TrendlineModel::~TrendlineModel() { } -// ============================================================================ + DataPointModel::DataPointModel() : mnIndex( -1 ), @@ -123,7 +123,7 @@ DataPointModel::~DataPointModel() { } -// ============================================================================ + SeriesModel::SeriesModel() : mnExplosion( 0 ), @@ -141,7 +141,7 @@ SeriesModel::~SeriesModel() { } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/titlecontext.cxx b/oox/source/drawingml/chart/titlecontext.cxx index 7067ef5d7443..ded50ca237ce 100644 --- a/oox/source/drawingml/chart/titlecontext.cxx +++ b/oox/source/drawingml/chart/titlecontext.cxx @@ -30,12 +30,12 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using ::oox::core::ContextHandler2Helper; using ::oox::core::ContextHandlerRef; -// ============================================================================ + TextContext::TextContext( ContextHandler2Helper& rParent, TextModel& rModel ) : ContextBase< TextModel >( rParent, rModel ) @@ -79,7 +79,7 @@ void TextContext::onCharacters( const OUString& rChars ) } } -// ============================================================================ + TitleContext::TitleContext( ContextHandler2Helper& rParent, TitleModel& rModel ) : ContextBase< TitleModel >( rParent, rModel ) @@ -115,7 +115,7 @@ ContextHandlerRef TitleContext::onCreateContext( sal_Int32 nElement, const Attri return 0; } -// ============================================================================ + LegendContext::LegendContext( ContextHandler2Helper& rParent, LegendModel& rModel ) : ContextBase< LegendModel >( rParent, rModel ) @@ -152,7 +152,7 @@ ContextHandlerRef LegendContext::onCreateContext( sal_Int32 nElement, const Attr return 0; } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/titleconverter.cxx b/oox/source/drawingml/chart/titleconverter.cxx index 5f4f5eabc40f..2cf3e1279a13 100644 --- a/oox/source/drawingml/chart/titleconverter.cxx +++ b/oox/source/drawingml/chart/titleconverter.cxx @@ -39,7 +39,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::com::sun::star::awt; using namespace ::com::sun::star::chart2; @@ -49,7 +49,7 @@ using namespace ::com::sun::star::uno; using ::oox::core::XmlFilterBase; -// ============================================================================ + TextConverter::TextConverter( const ConverterRoot& rParent, TextModel& rModel ) : ConverterBase< TextModel >( rParent, rModel ) @@ -134,7 +134,7 @@ Reference< XFormattedString > TextConverter::appendFormattedString( return xFmtStr; } -// ============================================================================ + TitleConverter::TitleConverter( const ConverterRoot& rParent, TitleModel& rModel ) : ConverterBase< TitleModel >( rParent, rModel ) @@ -178,7 +178,7 @@ void TitleConverter::convertFromModel( const Reference< XTitled >& rxTitled, con } } -// ============================================================================ + LegendConverter::LegendConverter( const ConverterRoot& rParent, LegendModel& rModel ) : ConverterBase< LegendModel >( rParent, rModel ) @@ -260,7 +260,7 @@ void LegendConverter::convertFromModel( const Reference< XDiagram >& rxDiagram ) } } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/titlemodel.cxx b/oox/source/drawingml/chart/titlemodel.cxx index 1a42f404612e..e34e92c74423 100644 --- a/oox/source/drawingml/chart/titlemodel.cxx +++ b/oox/source/drawingml/chart/titlemodel.cxx @@ -23,7 +23,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + TextModel::TextModel() { @@ -33,7 +33,7 @@ TextModel::~TextModel() { } -// ============================================================================ + TitleModel::TitleModel() : mbOverlay( false ) @@ -44,7 +44,7 @@ TitleModel::~TitleModel() { } -// ============================================================================ + LegendModel::LegendModel() : mnPosition( XML_r ), @@ -56,7 +56,7 @@ LegendModel::~LegendModel() { } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/typegroupcontext.cxx b/oox/source/drawingml/chart/typegroupcontext.cxx index f3d29e58b886..8b7b7fbbc8bf 100644 --- a/oox/source/drawingml/chart/typegroupcontext.cxx +++ b/oox/source/drawingml/chart/typegroupcontext.cxx @@ -26,12 +26,12 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using ::oox::core::ContextHandler2Helper; using ::oox::core::ContextHandlerRef; -// ============================================================================ + UpDownBarsContext::UpDownBarsContext( ContextHandler2Helper& rParent, UpDownBarsModel& rModel ) : ContextBase< UpDownBarsModel >( rParent, rModel ) @@ -62,7 +62,7 @@ ContextHandlerRef UpDownBarsContext::onCreateContext( sal_Int32 nElement, const return 0; } -// ============================================================================ + AreaTypeGroupContext::AreaTypeGroupContext( ContextHandler2Helper& rParent, TypeGroupModel& rModel ) : TypeGroupContextBase( rParent, rModel ) @@ -100,7 +100,7 @@ ContextHandlerRef AreaTypeGroupContext::onCreateContext( sal_Int32 nElement, con return 0; } -// ============================================================================ + BarTypeGroupContext::BarTypeGroupContext( ContextHandler2Helper& rParent, TypeGroupModel& rModel ) : TypeGroupContextBase( rParent, rModel ) @@ -151,7 +151,7 @@ ContextHandlerRef BarTypeGroupContext::onCreateContext( sal_Int32 nElement, cons return 0; } -// ============================================================================ + BubbleTypeGroupContext::BubbleTypeGroupContext( ContextHandler2Helper& rParent, TypeGroupModel& rModel ) : TypeGroupContextBase( rParent, rModel ) @@ -195,7 +195,7 @@ ContextHandlerRef BubbleTypeGroupContext::onCreateContext( sal_Int32 nElement, c return 0; } -// ============================================================================ + LineTypeGroupContext::LineTypeGroupContext( ContextHandler2Helper& rParent, TypeGroupModel& rModel ) : TypeGroupContextBase( rParent, rModel ) @@ -245,7 +245,7 @@ ContextHandlerRef LineTypeGroupContext::onCreateContext( sal_Int32 nElement, con return 0; } -// ============================================================================ + PieTypeGroupContext::PieTypeGroupContext( ContextHandler2Helper& rParent, TypeGroupModel& rModel ) : TypeGroupContextBase( rParent, rModel ) @@ -295,7 +295,7 @@ ContextHandlerRef PieTypeGroupContext::onCreateContext( sal_Int32 nElement, cons return 0; } -// ============================================================================ + RadarTypeGroupContext::RadarTypeGroupContext( ContextHandler2Helper& rParent, TypeGroupModel& rModel ) : TypeGroupContextBase( rParent, rModel ) @@ -328,7 +328,7 @@ ContextHandlerRef RadarTypeGroupContext::onCreateContext( sal_Int32 nElement, co return 0; } -// ============================================================================ + ScatterTypeGroupContext::ScatterTypeGroupContext( ContextHandler2Helper& rParent, TypeGroupModel& rModel ) : TypeGroupContextBase( rParent, rModel ) @@ -361,7 +361,7 @@ ContextHandlerRef ScatterTypeGroupContext::onCreateContext( sal_Int32 nElement, return 0; } -// ============================================================================ + SurfaceTypeGroupContext::SurfaceTypeGroupContext( ContextHandler2Helper& rParent, TypeGroupModel& rModel ) : TypeGroupContextBase( rParent, rModel ) @@ -389,7 +389,7 @@ ContextHandlerRef SurfaceTypeGroupContext::onCreateContext( sal_Int32 nElement, return 0; } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/typegroupconverter.cxx b/oox/source/drawingml/chart/typegroupconverter.cxx index b87fc455200c..78046507d24f 100644 --- a/oox/source/drawingml/chart/typegroupconverter.cxx +++ b/oox/source/drawingml/chart/typegroupconverter.cxx @@ -42,14 +42,14 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + using namespace ::com::sun::star::beans; using namespace ::com::sun::star::chart2; using namespace ::com::sun::star::chart2::data; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -100,7 +100,7 @@ const TypeGroupInfo& lclGetTypeInfoFromTypeId( TypeId eTypeId ) } // namespace -// ============================================================================ + UpDownBarsConverter::UpDownBarsConverter( const ConverterRoot& rParent, UpDownBarsModel& rModel ) : ConverterBase< UpDownBarsModel >( rParent, rModel ) @@ -132,7 +132,7 @@ void UpDownBarsConverter::convertFromModel( const Reference< XChartType >& rxCha } } -// ============================================================================ + TypeGroupConverter::TypeGroupConverter( const ConverterRoot& rParent, TypeGroupModel& rModel ) : ConverterBase< TypeGroupModel >( rParent, rModel ), @@ -570,7 +570,7 @@ void TypeGroupConverter::insertDataSeries( const Reference< XChartType >& rxChar } } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/chart/typegroupmodel.cxx b/oox/source/drawingml/chart/typegroupmodel.cxx index faaa15eebd77..ae3e1f218f45 100644 --- a/oox/source/drawingml/chart/typegroupmodel.cxx +++ b/oox/source/drawingml/chart/typegroupmodel.cxx @@ -23,7 +23,7 @@ namespace oox { namespace drawingml { namespace chart { -// ============================================================================ + UpDownBarsModel::UpDownBarsModel() : mnGapWidth( 150 ) @@ -34,7 +34,7 @@ UpDownBarsModel::~UpDownBarsModel() { } -// ============================================================================ + TypeGroupModel::TypeGroupModel( sal_Int32 nTypeId ) : mfSplitPos( 0.0 ), @@ -67,7 +67,7 @@ TypeGroupModel::~TypeGroupModel() { } -// ============================================================================ + } // namespace chart } // namespace drawingml diff --git a/oox/source/drawingml/color.cxx b/oox/source/drawingml/color.cxx index da050d837cd9..bebc967db23b 100644 --- a/oox/source/drawingml/color.cxx +++ b/oox/source/drawingml/color.cxx @@ -29,7 +29,7 @@ namespace oox { namespace drawingml { -// ============================================================================ + namespace { @@ -202,7 +202,7 @@ void lclOffValue( sal_Int32& ornValue, sal_Int32 nOff, sal_Int32 nMax = MAX_PERC } // namespace -// ============================================================================ + Color::Color() : meMode( COLOR_UNUSED ), @@ -766,7 +766,7 @@ void Color::toHsl() const } } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/colorchoicecontext.cxx b/oox/source/drawingml/colorchoicecontext.cxx index 076b245034e0..1ee3129ba91c 100644 --- a/oox/source/drawingml/colorchoicecontext.cxx +++ b/oox/source/drawingml/colorchoicecontext.cxx @@ -32,7 +32,7 @@ using ::oox::core::ContextHandler; namespace oox { namespace drawingml { -// ============================================================================ + ColorValueContext::ColorValueContext( ContextHandler2Helper& rParent, Color& rColor ) : ContextHandler2( rParent ), @@ -124,7 +124,7 @@ void ColorValueContext::onStartElement( const AttributeList& rAttribs ) return 0; } -// ============================================================================ + ColorContext::ColorContext( ContextHandler2Helper& rParent, Color& rColor ) : ContextHandler2( rParent ), @@ -148,7 +148,7 @@ ColorContext::ColorContext( ContextHandler2Helper& rParent, Color& rColor ) : return 0; } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/customshapegeometry.cxx b/oox/source/drawingml/customshapegeometry.cxx index cd43a1507f15..dbbe6e7a129c 100644 --- a/oox/source/drawingml/customshapegeometry.cxx +++ b/oox/source/drawingml/customshapegeometry.cxx @@ -86,7 +86,7 @@ typedef boost::unordered_map< OUString, FormularCommand, OUStringHash > FormulaC static const FormulaCommandHMap* pCommandHashMap; -// + OUString GetFormulaParameter( const EnhancedCustomShapeParameter& rParameter ) { OUString aRet; diff --git a/oox/source/drawingml/customshapepresets1.cxx b/oox/source/drawingml/customshapepresets1.cxx index 8d55f93ce8db..1d91970b8997 100644 --- a/oox/source/drawingml/customshapepresets1.cxx +++ b/oox/source/drawingml/customshapepresets1.cxx @@ -1,8 +1,8 @@ -// + // This file was generated by: ./generatePresetsCXX.pl -// + // Please, DO NOT EDIT. -// + // We mean it. #include <oox/drawingml/customshapeproperties.hxx> diff --git a/oox/source/drawingml/customshapepresets2.cxx b/oox/source/drawingml/customshapepresets2.cxx index f88abd614f98..d85352b82af8 100644 --- a/oox/source/drawingml/customshapepresets2.cxx +++ b/oox/source/drawingml/customshapepresets2.cxx @@ -1,8 +1,8 @@ -// + // This file was generated by: ./generatePresetsCXX.pl -// + // Please, DO NOT EDIT. -// + // We mean it. #include <oox/drawingml/customshapeproperties.hxx> diff --git a/oox/source/drawingml/customshapepresets3.cxx b/oox/source/drawingml/customshapepresets3.cxx index c833e330c555..95b0553224b5 100644 --- a/oox/source/drawingml/customshapepresets3.cxx +++ b/oox/source/drawingml/customshapepresets3.cxx @@ -1,8 +1,8 @@ -// + // This file was generated by: ./generatePresetsCXX.pl -// + // Please, DO NOT EDIT. -// + // We mean it. #include <oox/drawingml/customshapeproperties.hxx> diff --git a/oox/source/drawingml/customshapepresets4.cxx b/oox/source/drawingml/customshapepresets4.cxx index 79c49be31da7..f923eafbf1ad 100644 --- a/oox/source/drawingml/customshapepresets4.cxx +++ b/oox/source/drawingml/customshapepresets4.cxx @@ -1,8 +1,8 @@ -// + // This file was generated by: ./generatePresetsCXX.pl -// + // Please, DO NOT EDIT. -// + // We mean it. #include <oox/drawingml/customshapeproperties.hxx> diff --git a/oox/source/drawingml/customshapepresets5.cxx b/oox/source/drawingml/customshapepresets5.cxx index fdc640afd26e..d54ae67d5e9c 100644 --- a/oox/source/drawingml/customshapepresets5.cxx +++ b/oox/source/drawingml/customshapepresets5.cxx @@ -1,8 +1,8 @@ -// + // This file was generated by: ./generatePresetsCXX.pl -// + // Please, DO NOT EDIT. -// + // We mean it. #include <oox/drawingml/customshapeproperties.hxx> diff --git a/oox/source/drawingml/customshapepresets6.cxx b/oox/source/drawingml/customshapepresets6.cxx index 1f6c680a467c..65fd8de8d146 100644 --- a/oox/source/drawingml/customshapepresets6.cxx +++ b/oox/source/drawingml/customshapepresets6.cxx @@ -1,8 +1,8 @@ -// + // This file was generated by: ./generatePresetsCXX.pl -// + // Please, DO NOT EDIT. -// + // We mean it. #include <oox/drawingml/customshapeproperties.hxx> diff --git a/oox/source/drawingml/customshapes/generatePresetsCXX.pl b/oox/source/drawingml/customshapes/generatePresetsCXX.pl index e5a509d39416..7822f2e7a914 100755 --- a/oox/source/drawingml/customshapes/generatePresetsCXX.pl +++ b/oox/source/drawingml/customshapes/generatePresetsCXX.pl @@ -62,11 +62,11 @@ sub startSource open (OUT, ">customshapepresets" . $count . ".cxx"); print OUT << "EOS" -// + // This file was generated by: $0 -// + // Please, DO NOT EDIT. -// + // We mean it. #include <oox/drawingml/customshapeproperties.hxx> diff --git a/oox/source/drawingml/diagram/diagram.cxx b/oox/source/drawingml/diagram/diagram.cxx index e0ca0cc40ddc..da439ea4f6f5 100644 --- a/oox/source/drawingml/diagram/diagram.cxx +++ b/oox/source/drawingml/diagram/diagram.cxx @@ -147,7 +147,7 @@ static sal_Int32 calcDepth( const OUString& rNodeName, void Diagram::build( ) { // build name-object maps - // ====================== + #if OSL_DEBUG_LEVEL > 1 std::ofstream output("/tmp/tree.dot"); diff --git a/oox/source/drawingml/diagram/diagram.hxx b/oox/source/drawingml/diagram/diagram.hxx index 608f47e8cb77..031c66b1cbf6 100644 --- a/oox/source/drawingml/diagram/diagram.hxx +++ b/oox/source/drawingml/diagram/diagram.hxx @@ -154,11 +154,11 @@ typedef std::vector< Point > Points; class LayoutNode; typedef boost::shared_ptr< LayoutNode > LayoutNodePtr; -//////////////////// + typedef std::map< OUString, uno::Reference<xml::dom::XDocument> > DiagramDomMap; -//////////////////// + class DiagramData { @@ -203,7 +203,7 @@ typedef boost::shared_ptr< DiagramData > DiagramDataPtr; -//////////////////// + class DiagramLayout { @@ -251,7 +251,7 @@ private: typedef boost::shared_ptr< DiagramLayout > DiagramLayoutPtr; -/////////////////////// + struct DiagramStyle { @@ -275,7 +275,7 @@ struct DiagramColor typedef std::map<OUString,DiagramColor> DiagramColorMap; -/////////////////////// + class Diagram { diff --git a/oox/source/drawingml/diagram/diagramfragmenthandler.cxx b/oox/source/drawingml/diagram/diagramfragmenthandler.cxx index f003fb167413..373a05214dff 100644 --- a/oox/source/drawingml/diagram/diagramfragmenthandler.cxx +++ b/oox/source/drawingml/diagram/diagramfragmenthandler.cxx @@ -66,7 +66,7 @@ DiagramDataFragmentHandler::onCreateContext( ::sal_Int32 aElement, return this; } -/////////////////// + DiagramLayoutFragmentHandler::DiagramLayoutFragmentHandler( XmlFilterBase& rFilter, const OUString& rFragmentPath, @@ -104,7 +104,7 @@ DiagramLayoutFragmentHandler::onCreateContext( ::sal_Int32 aElement, return this; } -/////////////////////// + DiagramQStylesFragmentHandler::DiagramQStylesFragmentHandler( XmlFilterBase& rFilter, const OUString& rFragmentPath, @@ -173,7 +173,7 @@ void DiagramQStylesFragmentHandler::onStartElement( const AttributeList& rAttrib } } -///////////////////// + void DiagramQStylesFragmentHandler::onEndElement( ) { diff --git a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx index 127019fb8028..5b4cfc85ea99 100644 --- a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx +++ b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx @@ -506,10 +506,10 @@ bool LayoutNode::setupShape( const ShapePtr& rShape, const Diagram& rDgm, sal_uI return false; } -/////////////////////////////////////////////////////////////////////// -// + + // Visitation -// + class ShapeLayoutingVisitor : public LayoutAtomVisitor { diff --git a/oox/source/drawingml/drawingmltypes.cxx b/oox/source/drawingml/drawingmltypes.cxx index 821d7f477b57..48faa5438ebd 100644 --- a/oox/source/drawingml/drawingmltypes.cxx +++ b/oox/source/drawingml/drawingmltypes.cxx @@ -35,7 +35,7 @@ using namespace ::com::sun::star::style; namespace oox { namespace drawingml { -// ============================================================================ + /** converts EMUs into 1/100th mmm */ sal_Int32 GetCoordinate( sal_Int32 nValue ) @@ -380,7 +380,7 @@ IntegerRectangle2D GetRelativeRect( const Reference< XFastAttributeList >& xAttr return r; } -// ============================================================================ + /** converts the attributes from an CT_Size2D into an awt Size with 1/100thmm */ awt::Size GetSize2D( const Reference< XFastAttributeList >& xAttribs ) @@ -396,7 +396,7 @@ IndexRange GetIndexRange( const Reference< XFastAttributeList >& xAttributes ) return range; } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/effectproperties.cxx b/oox/source/drawingml/effectproperties.cxx index caaf61f096f6..b4d653ce9e73 100644 --- a/oox/source/drawingml/effectproperties.cxx +++ b/oox/source/drawingml/effectproperties.cxx @@ -18,7 +18,7 @@ namespace oox { namespace drawingml { -// ============================================================================ + void EffectShadowProperties::assignUsed(const EffectShadowProperties& rSourceProps) { @@ -51,7 +51,7 @@ void EffectProperties::pushToPropMap( PropertyMap& rPropMap, } } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/fillproperties.cxx b/oox/source/drawingml/fillproperties.cxx index f18661905adc..563d69e9ad7d 100644 --- a/oox/source/drawingml/fillproperties.cxx +++ b/oox/source/drawingml/fillproperties.cxx @@ -48,7 +48,7 @@ using ::com::sun::star::geometry::IntegerRectangle2D; namespace oox { namespace drawingml { -// ============================================================================ + namespace { @@ -147,7 +147,7 @@ const awt::Size lclGetOriginalSize( const GraphicHelper& rGraphicHelper, const R } // namespace -// ============================================================================ + void GradientFillProperties::assignUsed( const GradientFillProperties& rSourceProps ) { @@ -162,7 +162,7 @@ void GradientFillProperties::assignUsed( const GradientFillProperties& rSourcePr moRotateWithShape.assignIfUsed( rSourceProps.moRotateWithShape ); } -// ============================================================================ + void PatternFillProperties::assignUsed( const PatternFillProperties& rSourceProps ) { @@ -171,7 +171,7 @@ void PatternFillProperties::assignUsed( const PatternFillProperties& rSourceProp moPattPreset.assignIfUsed( rSourceProps.moPattPreset ); } -// ============================================================================ + void BlipFillProperties::assignUsed( const BlipFillProperties& rSourceProps ) { @@ -195,7 +195,7 @@ void BlipFillProperties::assignUsed( const BlipFillProperties& rSourceProps ) maDuotoneColors[1].assignIfUsed( rSourceProps.maDuotoneColors[1] ); } -// ============================================================================ + void FillProperties::assignUsed( const FillProperties& rSourceProps ) { @@ -513,7 +513,7 @@ void FillProperties::pushToPropMap( ShapePropertyMap& rPropMap, } } -// ============================================================================ + void GraphicProperties::pushToPropMap( PropertyMap& rPropMap, const GraphicHelper& rGraphicHelper, sal_Int32 nPhClr ) const { @@ -573,7 +573,7 @@ void GraphicProperties::pushToPropMap( PropertyMap& rPropMap, const GraphicHelpe rPropMap[ PROP_MediaURL ] <<= maAudio.msEmbed; } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/graphicshapecontext.cxx b/oox/source/drawingml/graphicshapecontext.cxx index 4cf3366e1808..3f45f4bab30f 100644 --- a/oox/source/drawingml/graphicshapecontext.cxx +++ b/oox/source/drawingml/graphicshapecontext.cxx @@ -49,7 +49,7 @@ using namespace ::oox::core; namespace oox { namespace drawingml { -// ============================================================================ + // CT_Picture GraphicShapeContext::GraphicShapeContext( ContextHandler2Helper& rParent, ShapePtr pMasterShapePtr, ShapePtr pShapePtr ) @@ -98,7 +98,7 @@ ContextHandlerRef GraphicShapeContext::onCreateContext( sal_Int32 aElementToken, return ShapeContext::onCreateContext( aElementToken, rAttribs ); } -// ============================================================================ + // CT_GraphicalObjectFrameContext GraphicalObjectFrameContext::GraphicalObjectFrameContext( ContextHandler2Helper& rParent, ShapePtr pMasterShapePtr, ShapePtr pShapePtr, bool bEmbedShapesInChart ) : @@ -142,7 +142,7 @@ ContextHandlerRef GraphicalObjectFrameContext::onCreateContext( sal_Int32 aEleme return ShapeContext::onCreateContext( aElementToken, rAttribs ); } -// ============================================================================ + OleObjectGraphicDataContext::OleObjectGraphicDataContext( ContextHandler2Helper& rParent, ShapePtr xShape ) : ShapeContext( rParent, ShapePtr(), xShape ), @@ -204,7 +204,7 @@ ContextHandlerRef OleObjectGraphicDataContext::onCreateContext( sal_Int32 nEleme return 0; } -// ============================================================================ + DiagramGraphicDataContext::DiagramGraphicDataContext( ContextHandler2Helper& rParent, ShapePtr pShapePtr ) : ShapeContext( rParent, ShapePtr(), pShapePtr ) @@ -249,7 +249,7 @@ ContextHandlerRef DiagramGraphicDataContext::onCreateContext( ::sal_Int32 aEleme return ShapeContext::onCreateContext( aElementToken, rAttribs ); } -// ============================================================================ + ChartGraphicDataContext::ChartGraphicDataContext( ContextHandler2Helper& rParent, const ShapePtr& rxShape, bool bEmbedShapes ) : ShapeContext( rParent, ShapePtr(), rxShape ), @@ -266,7 +266,7 @@ ContextHandlerRef ChartGraphicDataContext::onCreateContext( ::sal_Int32 nElement return 0; } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/lineproperties.cxx b/oox/source/drawingml/lineproperties.cxx index 34a208a37218..2044095c484b 100644 --- a/oox/source/drawingml/lineproperties.cxx +++ b/oox/source/drawingml/lineproperties.cxx @@ -45,7 +45,7 @@ using ::com::sun::star::container::XNameContainer; namespace oox { namespace drawingml { -// ============================================================================ + namespace { @@ -335,7 +335,7 @@ void lclPushMarkerProperties( ShapePropertyMap& rPropMap, } // namespace -// ============================================================================ + void LineArrowProperties::assignUsed( const LineArrowProperties& rSourceProps ) { @@ -344,7 +344,7 @@ void LineArrowProperties::assignUsed( const LineArrowProperties& rSourceProps ) moArrowLength.assignIfUsed( rSourceProps.moArrowLength ); } -// ============================================================================ + void LineProperties::assignUsed( const LineProperties& rSourceProps ) { @@ -442,7 +442,7 @@ sal_Int32 LineProperties::getLineWidth() const return convertEmuToHmm( moLineWidth.get( 0 ) ); } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/shape3dproperties.cxx b/oox/source/drawingml/shape3dproperties.cxx index 264787f7312e..1ef3f5dbae8c 100644 --- a/oox/source/drawingml/shape3dproperties.cxx +++ b/oox/source/drawingml/shape3dproperties.cxx @@ -45,9 +45,9 @@ using ::oox::core::XmlFilterBase; namespace oox { namespace drawingml { -// ============================================================================ -// ============================================================================ + + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/shapepropertiescontext.cxx b/oox/source/drawingml/shapepropertiescontext.cxx index d6d1f27cdcc6..488f8a0dbe2f 100644 --- a/oox/source/drawingml/shapepropertiescontext.cxx +++ b/oox/source/drawingml/shapepropertiescontext.cxx @@ -41,7 +41,7 @@ using namespace ::com::sun::star::xml::sax; namespace oox { namespace drawingml { -// ==================================================================== + // CT_ShapeProperties ShapePropertiesContext::ShapePropertiesContext( ContextHandler2Helper& rParent, Shape& rShape ) diff --git a/oox/source/drawingml/shapepropertymap.cxx b/oox/source/drawingml/shapepropertymap.cxx index ff02dd5f3503..edf335464e1b 100644 --- a/oox/source/drawingml/shapepropertymap.cxx +++ b/oox/source/drawingml/shapepropertymap.cxx @@ -28,14 +28,14 @@ namespace oox { namespace drawingml { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::drawing; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -65,7 +65,7 @@ ShapePropertyInfo::ShapePropertyInfo( const sal_Int32* pnPropertyIds, OSL_ENSURE( mpnPropertyIds != 0, "ShapePropertyInfo::ShapePropertyInfo - missing property identifiers" ); } -// ============================================================================ + ShapePropertyMap::ShapePropertyMap( ModelObjectHelper& rModelObjHelper, const ShapePropertyInfo& rShapePropInfo ) : mrModelObjHelper( rModelObjHelper ), @@ -195,7 +195,7 @@ bool ShapePropertyMap::setFillBitmapUrl( sal_Int32 nPropId, const Any& rValue ) return false; } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/textbodyproperties.cxx b/oox/source/drawingml/textbodyproperties.cxx index 36f39d93953f..62d6db120465 100644 --- a/oox/source/drawingml/textbodyproperties.cxx +++ b/oox/source/drawingml/textbodyproperties.cxx @@ -29,7 +29,7 @@ using namespace ::com::sun::star::text; namespace oox { namespace drawingml { -// ============================================================================ + TextBodyProperties::TextBodyProperties(): meVA( TextVerticalAdjust_TOP ) @@ -93,7 +93,7 @@ void TextBodyProperties::pushRotationAdjustments( sal_Int32 nRotation ) } } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/textcharacterproperties.cxx b/oox/source/drawingml/textcharacterproperties.cxx index c99a44a4ec12..1ad0bae6e51e 100644 --- a/oox/source/drawingml/textcharacterproperties.cxx +++ b/oox/source/drawingml/textcharacterproperties.cxx @@ -37,7 +37,7 @@ using namespace ::com::sun::star::beans; namespace oox { namespace drawingml { -// ============================================================================ + void TextCharacterProperties::assignUsed( const TextCharacterProperties& rSourceProps ) { @@ -158,7 +158,7 @@ float TextCharacterProperties::getCharHeightPoints( float fDefault ) const return moHeight.has() ? GetFontHeight( moHeight.get() ) : fDefault; } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/textfont.cxx b/oox/source/drawingml/textfont.cxx index 239c08768a2f..e5706c9c32e1 100644 --- a/oox/source/drawingml/textfont.cxx +++ b/oox/source/drawingml/textfont.cxx @@ -29,7 +29,7 @@ using ::oox::core::XmlFilterBase; namespace oox { namespace drawingml { -// ============================================================================ + namespace { @@ -49,7 +49,7 @@ sal_Int16 lclGetFontFamily( sal_Int32 nOoxValue ) } // namespace -// ============================================================================ + TextFont::TextFont() : mnPitch( 0 ), @@ -95,7 +95,7 @@ bool TextFont::implGetFontData( OUString& rFontName, sal_Int16& rnFontPitch, sal return !rFontName.isEmpty(); } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/theme.cxx b/oox/source/drawingml/theme.cxx index c60b764e0ea6..1fbcf1134261 100644 --- a/oox/source/drawingml/theme.cxx +++ b/oox/source/drawingml/theme.cxx @@ -22,7 +22,7 @@ namespace oox { namespace drawingml { -// ============================================================================ + Theme::Theme() { @@ -91,7 +91,7 @@ const TextFont* Theme::resolveFont( const OUString& rName ) const return 0; } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/themeelementscontext.cxx b/oox/source/drawingml/themeelementscontext.cxx index a2ff33814ca8..cf76a3eea731 100644 --- a/oox/source/drawingml/themeelementscontext.cxx +++ b/oox/source/drawingml/themeelementscontext.cxx @@ -35,7 +35,7 @@ using namespace ::com::sun::star::xml::sax; namespace oox { namespace drawingml { -// ============================================================================ + class FillStyleListContext : public ContextHandler2 { @@ -69,7 +69,7 @@ ContextHandlerRef FillStyleListContext::onCreateContext( sal_Int32 nElement, con return 0; } -// ============================================================================ + class LineStyleListContext : public ContextHandler2 { @@ -98,7 +98,7 @@ ContextHandlerRef LineStyleListContext::onCreateContext( sal_Int32 nElement, con return 0; } -// ============================================================================ + class EffectStyleListContext : public ContextHandler2 { @@ -132,7 +132,7 @@ ContextHandlerRef EffectStyleListContext::onCreateContext( sal_Int32 nElement, c return 0; } -// ============================================================================ + class FontSchemeContext : public ContextHandler2 { @@ -192,7 +192,7 @@ void FontSchemeContext::onEndElement() } } -// ============================================================================ + ThemeElementsContext::ThemeElementsContext( ContextHandler2Helper& rParent, Theme& rTheme ) : ContextHandler2( rParent ), @@ -226,7 +226,7 @@ ContextHandlerRef ThemeElementsContext::onCreateContext( sal_Int32 nElement, con return 0; } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/drawingml/themefragmenthandler.cxx b/oox/source/drawingml/themefragmenthandler.cxx index 87cd81fadb7d..48693830e036 100644 --- a/oox/source/drawingml/themefragmenthandler.cxx +++ b/oox/source/drawingml/themefragmenthandler.cxx @@ -27,7 +27,7 @@ using namespace ::oox::core; namespace oox { namespace drawingml { -// ============================================================================ + ThemeFragmentHandler::ThemeFragmentHandler( XmlFilterBase& rFilter, const OUString& rFragmentPath, Theme& rTheme ) : FragmentHandler2( rFilter, rFragmentPath ), @@ -71,7 +71,7 @@ ContextHandlerRef ThemeFragmentHandler::onCreateContext( sal_Int32 nElement, con return 0; } -// ============================================================================ + } // namespace drawingml } // namespace oox diff --git a/oox/source/dump/dffdumper.cxx b/oox/source/dump/dffdumper.cxx index f0edfbc5bfb1..1589a1c46125 100644 --- a/oox/source/dump/dffdumper.cxx +++ b/oox/source/dump/dffdumper.cxx @@ -24,7 +24,7 @@ namespace oox { namespace dump { -// ============================================================================ + namespace { @@ -48,7 +48,7 @@ const sal_uInt16 DFF_OPT_FLAGSMASK = 0x003F; } // namespace -// ============================================================================ + bool DffStreamObject::implReadRecordHeader( BinaryInputStream& rBaseStrm, sal_Int64& ornRecId, sal_Int64& ornRecSize ) { @@ -276,7 +276,7 @@ sal_uInt16 DffStreamObject::dumpDffOptPropHeader() return dumpHex< sal_uInt16 >( "id", "DFFOPT-PROPERTY-ID" ); } -// ============================================================================ + } // namespace dump } // namespace oox diff --git a/oox/source/dump/dumperbase.cxx b/oox/source/dump/dumperbase.cxx index 271b5e0bf557..7e748bac65fe 100644 --- a/oox/source/dump/dumperbase.cxx +++ b/oox/source/dump/dumperbase.cxx @@ -38,7 +38,7 @@ namespace oox { namespace dump { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::beans; @@ -64,8 +64,8 @@ const sal_Int64 OOX_DUMP_MAXARRAY = 16; } // namespace -// ============================================================================ -// ============================================================================ + + // file names ----------------------------------------------------------------- @@ -149,8 +149,8 @@ Reference< XTextOutputStream2 > InputOutputHelper::openTextOutputStream( return openTextOutputStream( rxContext, openOutputStream( rxContext, rFileName ), eTextEnc ); } -// ============================================================================ -// ============================================================================ + + ItemFormat::ItemFormat() : meDataType( DATATYPE_VOID ), @@ -199,8 +199,8 @@ OUStringVector ItemFormat::parse( const OUString& rFormatStr ) return OUStringVector( aIt, const_cast< const OUStringVector& >( aFormatVec ).end() ); } -// ============================================================================ -// ============================================================================ + + // append string to string ---------------------------------------------------- @@ -798,15 +798,15 @@ void StringHelper::convertStringToIntList( Int64Vector& orVec, const OUString& r } } -// ============================================================================ -// ============================================================================ + + Base::~Base() { } -// ============================================================================ -// ============================================================================ + + ConfigItemBase::~ConfigItemBase() { @@ -881,7 +881,7 @@ void ConfigItemBase::processConfigItem( implProcessConfigItemStr( rStrm, rKey, rData ); } -// ============================================================================ + NameListBase::~NameListBase() { @@ -951,7 +951,7 @@ void NameListBase::exclude( const OUString& rKeys ) maMap.erase( *aIt ); } -// ============================================================================ + void ItemFormatMap::insertFormats( const NameListRef& rxNameList ) { @@ -960,7 +960,7 @@ void ItemFormatMap::insertFormats( const NameListRef& rxNameList ) (*this)[ aIt->first ].parse( aIt->second ); } -// ============================================================================ + ConstList::ConstList( const SharedConfigData& rCfgData ) : NameListBase( rCfgData ), @@ -1012,7 +1012,7 @@ void ConstList::implIncludeList( const NameListBase& rList ) } } -// ============================================================================ + MultiList::MultiList( const SharedConfigData& rCfgData ) : ConstList( rCfgData ), @@ -1044,7 +1044,7 @@ void MultiList::implSetName( sal_Int64 nKey, const OUString& rName ) setNamesFromVec( nKey, aNames ); } -// ============================================================================ + FlagsList::FlagsList( const SharedConfigData& rCfgData ) : NameListBase( rCfgData ), @@ -1137,7 +1137,7 @@ void FlagsList::implIncludeList( const NameListBase& rList ) mnIgnore = pFlagsList->mnIgnore; } -// ============================================================================ + bool CombiList::ExtItemFormatKey::operator<( const ExtItemFormatKey& rRight ) const { @@ -1250,7 +1250,7 @@ void CombiList::implIncludeList( const NameListBase& rList ) FlagsList::implIncludeList( rList ); } -// ============================================================================ + UnitConverter::UnitConverter( const SharedConfigData& rCfgData ) : NameListBase( rCfgData ), @@ -1280,15 +1280,15 @@ void UnitConverter::implIncludeList( const NameListBase& /*rList*/ ) { } -// ============================================================================ + NameListRef NameListWrapper::getNameList( const Config& rCfg ) const { return mxList.get() ? mxList : (mxList = rCfg.getNameList( maName )); } -// ============================================================================ -// ============================================================================ + + SharedConfigData::SharedConfigData( const OUString& rFileName, const Reference< XComponentContext >& rxContext, const StorageRef& rxRootStrg, @@ -1429,7 +1429,7 @@ void SharedConfigData::createUnitConverter( const OUString& rData ) } } -// ============================================================================ + Config::Config( const Config& rParent ) : Base() // c'tor needs to be called explicitly to avoid compiler warning @@ -1521,8 +1521,8 @@ NameListRef Config::implGetNameList( const OUString& rListName ) const return mxCfgData->getNameList( rListName ); } -// ============================================================================ -// ============================================================================ + + Output::Output( const Reference< XComponentContext >& rxContext, const OUString& rFileName ) : mxStrm( InputOutputHelper::openTextOutputStream( rxContext, rFileName, RTL_TEXTENCODING_UTF8 ) ), @@ -1759,7 +1759,7 @@ void Output::writeItemName( const String& rItemName ) writeString( rItemName ); } -// ============================================================================ + StorageIterator::StorageIterator( const StorageRef& rxStrg ) : mxStrg( rxStrg ) @@ -1806,8 +1806,8 @@ bool StorageIterator::implIsValid() const return mxStrg.get() && mxStrg->isStorage() && (maIt != maNames.end()); } -// ============================================================================ -// ============================================================================ + + ObjectBase::~ObjectBase() { @@ -1838,8 +1838,8 @@ void ObjectBase::implDump() { } -// ============================================================================ -// ============================================================================ + + void StorageObjectBase::construct( const ObjectBase& rParent, const StorageRef& rxStrg, const OUString& rSysPath ) { @@ -1990,8 +1990,8 @@ void StorageObjectBase::extractItem( const StorageRef& rxStrg, const OUString& r } } -// ============================================================================ -// ============================================================================ + + OutputObjectBase::~OutputObjectBase() { @@ -2069,8 +2069,8 @@ void OutputObjectBase::writeGuidItem( const String& rName, const OUString& rGuid mxOut->writeString( cfg().getStringOption( rGuid, OUString() ) ); } -// ============================================================================ -// ============================================================================ + + InputObjectBase::~InputObjectBase() { @@ -2354,8 +2354,8 @@ void InputObjectBase::dumpItem( const ItemFormat& rItemFmt ) } } -// ============================================================================ -// ============================================================================ + + BinaryStreamObject::BinaryStreamObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, const OUString& rSysFileName ) { @@ -2374,8 +2374,8 @@ void BinaryStreamObject::implDump() dumpBinaryStream(); } -// ============================================================================ -// ============================================================================ + + void TextStreamObjectBase::construct( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, rtl_TextEncoding eTextEnc, const OUString& rSysFileName ) @@ -2407,7 +2407,7 @@ void TextStreamObjectBase::constructTextStrmObj( rtl_TextEncoding eTextEnc ) mxTextStrm.reset( new TextInputStream( getContext(), *mxStrm, eTextEnc ) ); } -// ============================================================================ + TextLineStreamObject::TextLineStreamObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, rtl_TextEncoding eTextEnc, const OUString& rSysFileName ) @@ -2441,7 +2441,7 @@ void TextLineStreamObject::implDumpLine( const OUString& rLine, sal_uInt32 nLine mxOut->newLine(); } -// ============================================================================ + XmlStreamObject::XmlStreamObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, const OUString& rSysFileName ) @@ -2529,8 +2529,8 @@ void XmlStreamObject::implDumpText( TextInputStream& rTextStrm ) } } -// ============================================================================ -// ============================================================================ + + void RecordObjectBase::construct( const ObjectBase& rParent, const BinaryInputStreamRef& rxBaseStrm, const OUString& rSysFileName, @@ -2609,7 +2609,7 @@ void RecordObjectBase::writeHeader() addNameToItem( mnRecId, maRecNames ); } -// ============================================================================ + void SequenceRecordObjectBase::construct( const ObjectBase& rParent, const BinaryInputStreamRef& rxBaseStrm, const OUString& rSysFileName, @@ -2644,8 +2644,8 @@ bool SequenceRecordObjectBase::implStartRecord( BinaryInputStream& rBaseStrm, sa return bValid; } -// ============================================================================ -// ============================================================================ + + DumperBase::~DumperBase() { @@ -2667,8 +2667,8 @@ void DumperBase::construct( const ConfigRef& rxConfig ) ObjectBase::construct( rxConfig ); } -// ============================================================================ -// ============================================================================ + + } // namespace dump } // namespace oox diff --git a/oox/source/dump/oledumper.cxx b/oox/source/dump/oledumper.cxx index 94251ef2c90c..510e3e361ab1 100644 --- a/oox/source/dump/oledumper.cxx +++ b/oox/source/dump/oledumper.cxx @@ -34,12 +34,12 @@ namespace oox { namespace dump { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::uno; -// ============================================================================ + OUString OleInputObjectBase::dumpAnsiString32( const String& rName ) { @@ -81,8 +81,8 @@ sal_uInt32 OleInputObjectBase::dumpOleColor( const String& rName ) return nOleColor; } -// ============================================================================ -// ============================================================================ + + StdFontObject::StdFontObject( const InputObjectBase& rParent ) { @@ -99,7 +99,7 @@ void StdFontObject::implDump() dumpCharArray( "name", mxStrm->readuInt8(), RTL_TEXTENCODING_ASCII_US ); } -// ============================================================================ + StdPicObject::StdPicObject( const InputObjectBase& rParent ) { @@ -113,15 +113,15 @@ void StdPicObject::implDump() dumpBinary( "image-data", nSize ); } -// ============================================================================ -// ============================================================================ + + OleStreamObject::OleStreamObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, const OUString& rSysFileName ) { construct( rParent, rxStrm, rSysFileName ); } -// ============================================================================ + OleCompObjObject::OleCompObjObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, const OUString& rSysFileName ) : OleStreamObject( rParent, rxStrm, rSysFileName ) @@ -154,8 +154,8 @@ void OleCompObjObject::implDump() dumpRemainingStream(); } -// ============================================================================ -// ============================================================================ + + namespace { @@ -195,7 +195,7 @@ const sal_uInt32 AX_STRING_COMPRESSED = 0x80000000; } // namespace -// ============================================================================ + OlePropertyStreamObject::OlePropertyStreamObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, const OUString& rSysFileName ) { @@ -515,7 +515,7 @@ void OlePropertyStreamObject::writePropertyHeader( sal_Int32 nPropId, sal_uInt32 writeDecItem( "id", nPropId, mxPropIds ); } -// ============================================================================ + OleStorageObject::OleStorageObject( const ObjectBase& rParent, const StorageRef& rxStrg, const OUString& rSysPath ) { @@ -537,8 +537,8 @@ void OleStorageObject::implDumpStream( const Reference< XInputStream >& rxStrm, BinaryStreamObject( *this, rxStrm, rSysFileName ).dump(); } -// ============================================================================ -// ============================================================================ + + ComCtlObjectBase::ComCtlObjectBase( const InputObjectBase& rParent, sal_uInt32 nDataId5, sal_uInt32 nDataId6, sal_uInt16 nVersion, bool bCommonPart, bool bComplexPart ) : @@ -646,7 +646,7 @@ bool ComCtlObjectBase::dumpComCtlComplex() return false; } -// ============================================================================ + ComCtlScrollBarObject::ComCtlScrollBarObject( const InputObjectBase& rParent, sal_uInt16 nVersion ) : ComCtlObjectBase( rParent, SAL_MAX_UINT32, 0x99470A83, nVersion, true, true ) @@ -663,7 +663,7 @@ void ComCtlScrollBarObject::implDumpProperties() dumpDec< sal_Int32 >( "value" ); } -// ============================================================================ + ComCtlProgressBarObject::ComCtlProgressBarObject( const InputObjectBase& rParent, sal_uInt16 nVersion ) : ComCtlObjectBase( rParent, 0xE6E17E84, 0x97AB8A01, nVersion, true, true ) @@ -681,7 +681,7 @@ void ComCtlProgressBarObject::implDumpProperties() } } -// ============================================================================ + ComCtlSliderObject::ComCtlSliderObject( const InputObjectBase& rParent, sal_uInt16 nVersion ) : ComCtlObjectBase( rParent, 0xE6E17E86, 0x0A2BAE11, nVersion, true, true ) @@ -706,7 +706,7 @@ void ComCtlSliderObject::implDumpProperties() dumpBool< sal_Int32 >( "tooltip-below" ); } -// ============================================================================ + ComCtlUpDownObject::ComCtlUpDownObject( const InputObjectBase& rParent, sal_uInt16 nVersion ) : ComCtlObjectBase( rParent, 0xFF3626A0, 0xFF3626A0, nVersion, false, false ) @@ -728,7 +728,7 @@ void ComCtlUpDownObject::implDumpProperties() dumpUnknown( 4 ); } -// ============================================================================ + ComCtlImageListObject::ComCtlImageListObject( const InputObjectBase& rParent, sal_uInt16 nVersion ) : ComCtlObjectBase( rParent, 0xE6E17E80, 0xE6E17E80, nVersion, true, false ) @@ -774,7 +774,7 @@ void ComCtlImageListObject::implDumpCommonTrailing() } } -// ============================================================================ + ComCtlTabStripObject::ComCtlTabStripObject( const InputObjectBase& rParent, sal_uInt16 nVersion ) : ComCtlObjectBase( rParent, 0xE6E17E8A, 0xD12A7AC1, nVersion, true, true ) @@ -815,7 +815,7 @@ void ComCtlTabStripObject::implDumpCommonExtra( sal_Int64 /*nEndPos*/ ) } } -// ============================================================================ + ComCtlTreeViewObject::ComCtlTreeViewObject( const InputObjectBase& rParent, sal_uInt16 nVersion ) : ComCtlObjectBase( rParent, 0xE6E17E8E, 0x6AC13CB1, nVersion, true, true ), @@ -842,7 +842,7 @@ void ComCtlTreeViewObject::implDumpCommonExtra( sal_Int64 /*nEndPos*/ ) dumpUniString32( "path-separator" ); } -// ============================================================================ + ComCtlStatusBarObject::ComCtlStatusBarObject( const InputObjectBase& rParent, sal_uInt16 nVersion ) : ComCtlObjectBase( rParent, 0xE6E17E88, SAL_MAX_UINT32, nVersion, true, true ) @@ -891,8 +891,8 @@ void ComCtlStatusBarObject::implDumpCommonTrailing() } } -// ============================================================================ -// ============================================================================ + + void AxPropertyObjectBase::construct( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, const OUString& rSysFileName, const String& rPropNameList, bool b64BitPropFlags ) @@ -1198,7 +1198,7 @@ void AxPropertyObjectBase::dumpLargeProperties() } } -// ============================================================================ + AxCFontNewObject::AxCFontNewObject( const InputObjectBase& rParent ) { @@ -1217,7 +1217,7 @@ void AxCFontNewObject::implDumpShortProperties() dumpDecProperty< sal_uInt16 >( 400, "FONT-WEIGHT" ); } -// ============================================================================ + AxColumnInfoObject::AxColumnInfoObject( const InputObjectBase& rParent ) { @@ -1229,7 +1229,7 @@ void AxColumnInfoObject::implDumpShortProperties() dumpDecProperty< sal_Int32 >( -1, "CONV-HMM-TO-CM" ); } -// ============================================================================ + AxCommandButtonObject::AxCommandButtonObject( const InputObjectBase& rParent ) { @@ -1256,7 +1256,7 @@ void AxCommandButtonObject::implDumpExtended() dumpEmbeddedFont(); } -// ============================================================================ + AxMorphControlObject::AxMorphControlObject( const InputObjectBase& rParent ) { @@ -1320,7 +1320,7 @@ void AxMorphControlObject::dumpColumnInfos() } } -// ============================================================================ + AxLabelObject::AxLabelObject( const InputObjectBase& rParent ) { @@ -1349,7 +1349,7 @@ void AxLabelObject::implDumpExtended() dumpEmbeddedFont(); } -// ============================================================================ + AxImageObject::AxImageObject( const InputObjectBase& rParent ) { @@ -1375,7 +1375,7 @@ void AxImageObject::implDumpShortProperties() dumpStreamProperty(); } -// ============================================================================ + AxScrollBarObject::AxScrollBarObject( const InputObjectBase& rParent ) { @@ -1403,7 +1403,7 @@ void AxScrollBarObject::implDumpShortProperties() dumpStreamProperty(); } -// ============================================================================ + AxSpinButtonObject::AxSpinButtonObject( const InputObjectBase& rParent ) { @@ -1429,7 +1429,7 @@ void AxSpinButtonObject::implDumpShortProperties() dumpMousePtrProperty(); } -// ============================================================================ + AxTabStripObject::AxTabStripObject( const InputObjectBase& rParent ) { @@ -1478,8 +1478,8 @@ void AxTabStripObject::implDumpExtended() } } -// ============================================================================ -// ============================================================================ + + FormControlStreamObject::FormControlStreamObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, const OUString& rSysFileName, const OUString* pProgId ) { @@ -1561,8 +1561,8 @@ void FormControlStreamObject::constructFormCtrlStrmObj( const OUString* pProgId maProgId = *pProgId; } -// ============================================================================ -// ============================================================================ + + VbaFormClassInfoObject::VbaFormClassInfoObject( const InputObjectBase& rParent, VbaFormSharedData& rFormData ) : mrFormData( rFormData ) @@ -1590,7 +1590,7 @@ void VbaFormClassInfoObject::implDumpShortProperties() dumpDecProperty< sal_uInt16 >( 0 ); } -// ============================================================================ + namespace { @@ -1646,7 +1646,7 @@ void VbaFormSiteObject::implDumpShortProperties() mrFormData.maSiteInfos.push_back( aSiteInfo ); } -// ============================================================================ + VbaFormDesignExtObject::VbaFormDesignExtObject( const InputObjectBase& rParent ) { @@ -1662,7 +1662,7 @@ void VbaFormDesignExtObject::implDumpShortProperties() dumpDecProperty< sal_Int8 >( 0, "VBA-FORMDESIGNEXT-DBLCLICKCTRLMODE" ); } -// ============================================================================ + namespace { @@ -1798,7 +1798,7 @@ void VbaFStreamObject::dumpDesignExtender() } } -// ============================================================================ + VbaOStreamObject::VbaOStreamObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, const OUString& rSysFileName, VbaFormSharedData& rFormData ) : @@ -1824,7 +1824,7 @@ void VbaOStreamObject::implDump() dumpRemainingStream(); } -// ============================================================================ + VbaPageObject::VbaPageObject( const InputObjectBase& rParent ) { @@ -1838,7 +1838,7 @@ void VbaPageObject::implDumpShortProperties() dumpDecProperty< sal_uInt32 >( 0, "AX-CONV-MS" ); } -// ============================================================================ + VbaMultiPageObject::VbaMultiPageObject( const InputObjectBase& rParent ) { @@ -1865,7 +1865,7 @@ void VbaMultiPageObject::implDumpExtended() } } -// ============================================================================ + VbaXStreamObject::VbaXStreamObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, const OUString& rSysFileName, VbaFormSharedData& rFormData ) : @@ -1893,7 +1893,7 @@ void VbaXStreamObject::implDump() dumpRemainingStream(); } -// ============================================================================ + VbaContainerStorageObject::VbaContainerStorageObject( const ObjectBase& rParent, const StorageRef& rxStrg, const OUString& rSysPath ) : OleStorageObject( rParent, rxStrg, rSysPath ) @@ -1937,8 +1937,8 @@ bool VbaContainerStorageObject::isFormStorage( const OUString& rStrgPath ) const return false; } -// ============================================================================ -// ============================================================================ + + VbaSharedData::VbaSharedData() : meTextEnc( RTL_TEXTENCODING_MS_1252 ) @@ -1956,7 +1956,7 @@ sal_Int32 VbaSharedData::getStreamOffset( const OUString& rStrmName ) const return (aIt == maStrmOffsets.end()) ? 0 : aIt->second; } -// ============================================================================ + VbaDirStreamObject::VbaDirStreamObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, const OUString& rSysFileName, VbaSharedData& rVbaData ) : @@ -2095,7 +2095,7 @@ OUString VbaDirStreamObject::dumpByteStringWithLength( const String& rName ) return dumpCharArray( rName, mxStrm->readInt32(), mrVbaData.meTextEnc ); } -// ============================================================================ + VbaModuleStreamObject::VbaModuleStreamObject( const ObjectBase& rParent, const BinaryInputStreamRef& rxStrm, @@ -2116,7 +2116,7 @@ void VbaModuleStreamObject::implDump() TextLineStreamObject( *this, xVbaStrm, mrVbaData.meTextEnc ).dump(); } -// ============================================================================ + VbaStorageObject::VbaStorageObject( const ObjectBase& rParent, const StorageRef& rxStrg, const OUString& rSysPath, VbaSharedData& rVbaData ) : OleStorageObject( rParent, rxStrg, rSysPath ), @@ -2135,7 +2135,7 @@ void VbaStorageObject::implDumpStream( const Reference< XInputStream >& rxStrm, OleStorageObject::implDumpStream( rxStrm, rStrgPath, rStrmName, rSysFileName ); } -// ============================================================================ + VbaFormStorageObject::VbaFormStorageObject( const ObjectBase& rParent, const StorageRef& rxStrg, const OUString& rSysPath, VbaSharedData& rVbaData ) : VbaContainerStorageObject( rParent, rxStrg, rSysPath ), @@ -2151,7 +2151,7 @@ void VbaFormStorageObject::implDumpStream( const Reference< XInputStream >& rxSt VbaContainerStorageObject::implDumpStream( rxStrm, rStrgPath, rStrmName, rSysFileName ); } -// ============================================================================ + VbaProjectStorageObject::VbaProjectStorageObject( const ObjectBase& rParent, const StorageRef& rxStrg, const OUString& rSysPath ) : OleStorageObject( rParent, rxStrg, rSysPath ) @@ -2175,8 +2175,8 @@ void VbaProjectStorageObject::implDumpStorage( const StorageRef& rxStrg, const O VbaFormStorageObject( *this, rxStrg, rSysPath, maVbaData ).dump(); } -// ============================================================================ -// ============================================================================ + + ActiveXStorageObject::ActiveXStorageObject( const ObjectBase& rParent, const StorageRef& rxStrg, const OUString& rSysPath ) : VbaContainerStorageObject( rParent, rxStrg, rSysPath ) @@ -2188,8 +2188,8 @@ void ActiveXStorageObject::implDumpBaseStream( const BinaryInputStreamRef& rxStr FormControlStreamObject( *this, rxStrm, rSysFileName ).dump(); } -// ============================================================================ -// ============================================================================ + + } // namespace dump } // namespace oox diff --git a/oox/source/dump/pptxdumper.cxx b/oox/source/dump/pptxdumper.cxx index 9c9b81f07559..048fbac0be75 100644 --- a/oox/source/dump/pptxdumper.cxx +++ b/oox/source/dump/pptxdumper.cxx @@ -30,7 +30,7 @@ namespace oox { namespace dump { namespace pptx { -// ============================================================================ + using namespace ::com::sun::star::io; //using namespace ::com::sun::star::lang; @@ -38,7 +38,7 @@ using namespace ::com::sun::star::uno; using ::oox::core::FilterBase; -// ============================================================================ + RootStorageObject::RootStorageObject( const DumperBase& rParent ) { @@ -105,7 +105,7 @@ void RootStorageObject::implDumpStream( const Reference< XInputStream >& rxStrm, } } -// ============================================================================ + #define DUMP_PPTX_CONFIG_ENVVAR "OOO_PPTXDUMPER" @@ -130,7 +130,7 @@ void Dumper::implDump() RootStorageObject( *this ).dump(); } -// ============================================================================ + } // namespace pptx } // namespace dump diff --git a/oox/source/export/ColorPropertySet.cxx b/oox/source/export/ColorPropertySet.cxx index c7f92c65fdd6..c6cca0ad7581 100644 --- a/oox/source/export/ColorPropertySet.cxx +++ b/oox/source/export/ColorPropertySet.cxx @@ -31,7 +31,7 @@ using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::Sequence; using ::com::sun::star::uno::RuntimeException; -// ================================================================================ + namespace { @@ -82,7 +82,7 @@ sal_Bool SAL_CALL lcl_ColorPropertySetInfo::hasPropertyByName( const OUString& N } // anonymous namespace -// ================================================================================ + namespace oox { diff --git a/oox/source/helper/attributelist.cxx b/oox/source/helper/attributelist.cxx index f455a6ecb6fd..b851ccd75a38 100644 --- a/oox/source/helper/attributelist.cxx +++ b/oox/source/helper/attributelist.cxx @@ -27,13 +27,13 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; -// ============================================================================ + namespace { @@ -116,7 +116,7 @@ sal_Int32 AttributeConversion::decodeIntegerHex( const OUString& rValue ) // cast, but that will have a ripple effect } -// ============================================================================ + AttributeList::AttributeList( const Reference< XFastAttributeList >& rxAttribs ) : mxAttribs( rxAttribs ), @@ -319,7 +319,7 @@ util::DateTime AttributeList::getDateTime( sal_Int32 nAttrToken, const util::Dat return getDateTime( nAttrToken ).get( rDefault ); } -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/binaryinputstream.cxx b/oox/source/helper/binaryinputstream.cxx index 1bef500463c6..552e321ec52d 100644 --- a/oox/source/helper/binaryinputstream.cxx +++ b/oox/source/helper/binaryinputstream.cxx @@ -29,7 +29,7 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::uno; @@ -40,7 +40,7 @@ const sal_Int32 INPUTSTREAM_BUFFERSIZE = 0x8000; } // namespace -// ============================================================================ + OUString BinaryInputStream::readNulUnicodeArray() { @@ -121,7 +121,7 @@ void BinaryInputStream::copyToStream( BinaryOutputStream& rOutStrm, sal_Int64 nB } } -// ============================================================================ + BinaryXInputStream::BinaryXInputStream( const Reference< XInputStream >& rxInStrm, bool bAutoClose ) : BinaryStreamBase( Reference< XSeekable >( rxInStrm, UNO_QUERY ).is() ), @@ -202,7 +202,7 @@ void BinaryXInputStream::skip( sal_Int32 nBytes, size_t /*nAtomSize*/ ) } } -// ============================================================================ + SequenceInputStream::SequenceInputStream( const StreamDataSequence& rData ) : BinaryStreamBase( true ), @@ -249,7 +249,7 @@ void SequenceInputStream::skip( sal_Int32 nBytes, size_t /*nAtomSize*/ ) } } -// ============================================================================ + RelativeInputStream::RelativeInputStream( BinaryInputStream& rInStrm, sal_Int64 nSize ) : BinaryStreamBase( rInStrm.isSeekable() ), @@ -325,7 +325,7 @@ void RelativeInputStream::skip( sal_Int32 nBytes, size_t nAtomSize ) } } -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/binaryoutputstream.cxx b/oox/source/helper/binaryoutputstream.cxx index 790c250126da..30c55e47eb3d 100644 --- a/oox/source/helper/binaryoutputstream.cxx +++ b/oox/source/helper/binaryoutputstream.cxx @@ -26,7 +26,7 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::uno; @@ -37,7 +37,7 @@ const sal_Int32 OUTPUTSTREAM_BUFFERSIZE = 0x8000; } // namespace -// ============================================================================ + BinaryXOutputStream::BinaryXOutputStream( const Reference< XOutputStream >& rxOutStrm, bool bAutoClose ) : BinaryStreamBase( Reference< XSeekable >( rxOutStrm, UNO_QUERY ).is() ), @@ -137,7 +137,7 @@ BinaryOutputStream::writeCompressedUnicodeArray( const OUString& rString, bool b writeUnicodeArray( rString, bAllowNulChars ); } -// ============================================================================ + SequenceOutputStream::SequenceOutputStream( StreamDataSequence& rData ) : BinaryStreamBase( true ), @@ -162,7 +162,7 @@ void SequenceOutputStream::writeMemory( const void* pMem, sal_Int32 nBytes, size } } -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/binarystreambase.cxx b/oox/source/helper/binarystreambase.cxx index f85a811477fc..9e86080f0565 100644 --- a/oox/source/helper/binarystreambase.cxx +++ b/oox/source/helper/binarystreambase.cxx @@ -24,12 +24,12 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::uno; -// ============================================================================ + BinaryStreamBase::~BinaryStreamBase() { @@ -57,7 +57,7 @@ void BinaryStreamBase::alignToBlock( sal_Int32 nBlockSize, sal_Int64 nAnchorPos } } -// ============================================================================ + BinaryXSeekableStream::BinaryXSeekableStream( const Reference< XSeekable >& rxSeekable ) : BinaryStreamBase( mxSeekable.is() ), @@ -114,7 +114,7 @@ void BinaryXSeekableStream::close() mbEof = true; } -// ============================================================================ + SequenceSeekableStream::SequenceSeekableStream( const StreamDataSequence& rData ) : BinaryStreamBase( true ), @@ -148,7 +148,7 @@ void SequenceSeekableStream::close() mbEof = true; } -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/containerhelper.cxx b/oox/source/helper/containerhelper.cxx index d233db353c9e..bb7a13b92d0c 100644 --- a/oox/source/helper/containerhelper.cxx +++ b/oox/source/helper/containerhelper.cxx @@ -28,13 +28,13 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star::container; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -80,7 +80,7 @@ void ValueRangeSet::insert( const ValueRange& rRange ) } } -// ============================================================================ + OUString ContainerHelper::getUnusedName( const Reference< XNameAccess >& rxNameAccess, const OUString& rSuggestedName, @@ -147,7 +147,7 @@ OUString ContainerHelper::insertByUnusedName( return aNewName; } -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/graphichelper.cxx b/oox/source/helper/graphichelper.cxx index 5cb2b69b1940..71ab8263f43c 100644 --- a/oox/source/helper/graphichelper.cxx +++ b/oox/source/helper/graphichelper.cxx @@ -40,7 +40,7 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star; @@ -51,7 +51,7 @@ using namespace ::com::sun::star::io; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -62,7 +62,7 @@ inline sal_Int32 lclConvertScreenPixelToHmm( double fPixel, double fPixelPerHmm } // namespace -// ============================================================================ + GraphicHelper::GraphicHelper( const Reference< XComponentContext >& rxContext, const Reference< XFrame >& rxTargetFrame, const StorageRef& rxStorage ) : mxContext( rxContext ), @@ -340,7 +340,7 @@ awt::Size GraphicHelper::getOriginalSize( const Reference< XGraphic >& xGraphic return aSizeHmm; } -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/modelobjecthelper.cxx b/oox/source/helper/modelobjecthelper.cxx index eec597ada47c..5a966fe82d67 100644 --- a/oox/source/helper/modelobjecthelper.cxx +++ b/oox/source/helper/modelobjecthelper.cxx @@ -29,14 +29,14 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::drawing; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::uno; -// ============================================================================ + ObjectContainer::ObjectContainer( const Reference< XMultiServiceFactory >& rxModelFactory, const OUString& rServiceName ) : mxModelFactory( rxModelFactory ), @@ -82,7 +82,7 @@ void ObjectContainer::createContainer() const OSL_ENSURE( mxContainer.is(), "ObjectContainer::createContainer - container not found" ); } -// ============================================================================ + ModelObjectHelper::ModelObjectHelper( const Reference< XMultiServiceFactory >& rxModelFactory ) : maMarkerContainer( rxModelFactory, "com.sun.star.drawing.MarkerTable" ), @@ -132,7 +132,7 @@ OUString ModelObjectHelper::insertFillBitmapUrl( const OUString& rGraphicUrl ) return OUString(); } -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/progressbar.cxx b/oox/source/helper/progressbar.cxx index 926ef1b36dbe..9ea041bca878 100644 --- a/oox/source/helper/progressbar.cxx +++ b/oox/source/helper/progressbar.cxx @@ -24,7 +24,7 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star::task; using namespace ::com::sun::star::uno; @@ -35,7 +35,7 @@ const sal_Int32 PROGRESS_RANGE = 1000000; } // namespace -// ============================================================================ + IProgressBar::~IProgressBar() { @@ -47,8 +47,8 @@ ISegmentProgressBar::~ISegmentProgressBar() { } -// ============================================================================ -// ============================================================================ + + ProgressBar::ProgressBar( const Reference< XStatusIndicator >& rxIndicator, const OUString& rText ) : mxIndicator( rxIndicator ), @@ -77,7 +77,7 @@ void ProgressBar::setPosition( double fPosition ) mxIndicator->setValue( static_cast< sal_Int32 >( mfPosition * PROGRESS_RANGE ) ); } -// ============================================================================ + namespace prv { @@ -139,7 +139,7 @@ ISegmentProgressBarRef SubSegment::createSegment( double fLength ) } // namespace prv -// ============================================================================ + SegmentProgressBar::SegmentProgressBar( const Reference< XStatusIndicator >& rxIndicator, const OUString& rText ) : maProgress( rxIndicator, rText ), @@ -171,7 +171,7 @@ ISegmentProgressBarRef SegmentProgressBar::createSegment( double fLength ) return xSegment; } -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/propertymap.cxx b/oox/source/helper/propertymap.cxx index 20e232dec62d..14eab54424c5 100644 --- a/oox/source/helper/propertymap.cxx +++ b/oox/source/helper/propertymap.cxx @@ -82,7 +82,7 @@ using ::com::sun::star::drawing::TextVerticalAdjust; namespace oox { using ::com::sun::star::container::XIndexReplace; -// ============================================================================ + using namespace ::com::sun::star::beans; using namespace ::com::sun::star::lang; @@ -92,7 +92,7 @@ using ::com::sun::star::drawing::TextHorizontalAdjust; using ::com::sun::star::drawing::TextVerticalAdjust; -// ============================================================================ + namespace { @@ -196,7 +196,7 @@ sal_Bool SAL_CALL GenericPropertySet::hasPropertyByName( const OUString& rProper } // namespace -// ============================================================================ + PropertyMap::PropertyMap() : mpPropNames( &StaticPropertyNameVector::get() ) // pointer instead reference to get compiler generated copy c'tor and operator= @@ -866,7 +866,7 @@ void PropertyMap::dumpCode() } #endif -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/propertyset.cxx b/oox/source/helper/propertyset.cxx index cd84e9fcd27b..70a733fc168b 100644 --- a/oox/source/helper/propertyset.cxx +++ b/oox/source/helper/propertyset.cxx @@ -25,12 +25,12 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star::beans; using namespace ::com::sun::star::uno; -// ============================================================================ + void PropertySet::set( const Reference< XPropertySet >& rxPropSet ) { diff --git a/oox/source/helper/storagebase.cxx b/oox/source/helper/storagebase.cxx index 9e270094d2b1..0e049c689e58 100644 --- a/oox/source/helper/storagebase.cxx +++ b/oox/source/helper/storagebase.cxx @@ -27,13 +27,13 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star::embed; using namespace ::com::sun::star::io; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -265,7 +265,7 @@ StorageRef StorageBase::getSubStorage( const OUString& rElementName, bool bCreat return rxSubStrg; } -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/textinputstream.cxx b/oox/source/helper/textinputstream.cxx index 0a10ac2fa0ec..2517a756baec 100644 --- a/oox/source/helper/textinputstream.cxx +++ b/oox/source/helper/textinputstream.cxx @@ -27,13 +27,13 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -113,7 +113,7 @@ void UnoBinaryInputStream::ensureConnected() const throw (NotConnectedException) } // namespace -// ============================================================================ + TextInputStream::TextInputStream( const Reference< XComponentContext >& rxContext, const Reference< XInputStream >& rxInStrm, rtl_TextEncoding eTextEnc ) { @@ -220,7 +220,7 @@ void TextInputStream::init( const Reference< XComponentContext >& rxContext, con mxTextStrm = createXTextInputStream( rxContext, rxInStrm, eTextEnc ); } -// ============================================================================ + } // namespace oox diff --git a/oox/source/helper/zipstorage.cxx b/oox/source/helper/zipstorage.cxx index c4cbdc5e8a5a..46fffdc9dc9b 100644 --- a/oox/source/helper/zipstorage.cxx +++ b/oox/source/helper/zipstorage.cxx @@ -31,7 +31,7 @@ namespace oox { -// ============================================================================ + using namespace ::com::sun::star::container; using namespace ::com::sun::star::embed; @@ -39,7 +39,7 @@ using namespace ::com::sun::star::io; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::uno; -// ============================================================================ + ZipStorage::ZipStorage( const Reference< XComponentContext >& rxContext, const Reference< XInputStream >& rxInStream ) : StorageBase( rxInStream, false ) @@ -202,7 +202,7 @@ void ZipStorage::implCommit() const } } -// ============================================================================ + } // namespace oox diff --git a/oox/source/ole/axbinaryreader.cxx b/oox/source/ole/axbinaryreader.cxx index 38f8575e5240..16e65f5d1a73 100644 --- a/oox/source/ole/axbinaryreader.cxx +++ b/oox/source/ole/axbinaryreader.cxx @@ -24,7 +24,7 @@ namespace oox { namespace ole { -// ============================================================================ + namespace { @@ -33,7 +33,7 @@ const sal_uInt32 AX_STRING_COMPRESSED = 0x80000000; } // namespace -// ============================================================================ + AxAlignedInputStream::AxAlignedInputStream( BinaryInputStream& rInStrm ) : BinaryStreamBase( false ), @@ -106,7 +106,7 @@ void AxAlignedInputStream::align( size_t nSize ) skip( static_cast< sal_Int32 >( (nSize - (mnStrmPos % nSize)) % nSize ) ); } -// ============================================================================ + namespace { @@ -285,7 +285,7 @@ bool AxBinaryPropertyReader::startNextProperty() return ensureValid() && bHasProp; } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/axbinarywriter.cxx b/oox/source/ole/axbinarywriter.cxx index 09826b50ad67..076dfff8aead 100644 --- a/oox/source/ole/axbinarywriter.cxx +++ b/oox/source/ole/axbinarywriter.cxx @@ -13,7 +13,7 @@ namespace oox { namespace ole { -// ============================================================================ + namespace { @@ -21,7 +21,7 @@ const sal_uInt32 AX_STRING_COMPRESSED = 0x80000000; } // namespace -// ============================================================================ + AxAlignedOutputStream::AxAlignedOutputStream( BinaryOutputStream& rOutStrm ) : BinaryStreamBase( false ), @@ -88,7 +88,7 @@ void AxAlignedOutputStream::align( size_t nSize ) pad( static_cast< sal_Int32 >( (nSize - (mnStrmPos % nSize)) % nSize ) ); } -// ============================================================================ + namespace { @@ -212,7 +212,7 @@ bool AxBinaryPropertyWriter::startNextProperty( bool bSkip ) return true; } -// ============================================================================ + } // namespace exp } // namespace ole diff --git a/oox/source/ole/axcontrol.cxx b/oox/source/ole/axcontrol.cxx index f25e8afa3250..a1330ac386c5 100644 --- a/oox/source/ole/axcontrol.cxx +++ b/oox/source/ole/axcontrol.cxx @@ -217,7 +217,7 @@ void lclPrepareConverter( PropertySet& rConverter, const Reference< XModel >& rx } // namespace -// ============================================================================ + ControlConverter::ControlConverter( const Reference< XModel >& rxDocModel, const GraphicHelper& rGraphicHelper, bool bDefaultColorBgr ) : @@ -578,7 +578,7 @@ void ControlConverter::convertToAxOrientation( PropertySet& rPropSet, nOrientation = AX_ORIENTATION_VERTICAL; } -// ============================================================================ + ControlModelBase::ControlModelBase() : maSize( 0, 0 ), @@ -654,7 +654,7 @@ void ControlModelBase::convertSize( PropertyMap& rPropMap, const ControlConverte rConv.convertSize( rPropMap, maSize ); } -// ============================================================================ + ComCtlModelBase::ComCtlModelBase( sal_uInt32 nDataPartId5, sal_uInt32 nDataPartId6, sal_uInt16 nVersion, bool bCommonPart, bool bComplexPart ) : @@ -768,7 +768,7 @@ bool ComCtlModelBase::importComplexPart( BinaryInputStream& rInStrm ) return false; } -// ============================================================================ + ComCtlScrollBarModel::ComCtlScrollBarModel( sal_uInt16 nVersion ) : ComCtlModelBase( SAL_MAX_UINT32, COMCTL_ID_SCROLLBAR_60, nVersion, true, true ), @@ -799,7 +799,7 @@ void ComCtlScrollBarModel::importControlData( BinaryInputStream& rInStrm ) rInStrm >> mnScrollBarFlags >> mnLargeChange >> mnSmallChange >> mnMin >> mnMax >> mnPosition; } -// ============================================================================ + ComCtlProgressBarModel::ComCtlProgressBarModel( sal_uInt16 nVersion ) : ComCtlModelBase( COMCTL_ID_PROGRESSBAR_50, COMCTL_ID_PROGRESSBAR_60, nVersion, true, true ), @@ -833,7 +833,7 @@ void ComCtlProgressBarModel::importControlData( BinaryInputStream& rInStrm ) rInStrm >> mnVertical >> mnSmooth; } -// ============================================================================ + AxControlModelBase::AxControlModelBase() { @@ -858,7 +858,7 @@ void AxControlModelBase::importProperty( sal_Int32 nPropId, const OUString& rVal } } -// ============================================================================ + AxFontDataModel::AxFontDataModel( bool bSupportsAlign ) : mbSupportsAlign( bSupportsAlign ) @@ -961,7 +961,7 @@ void AxFontDataModel::convertFromProperties( PropertySet& rPropSet, const Contro } } -// ============================================================================ + AxCommandButtonModel::AxCommandButtonModel() : mnTextColor( AX_SYSCOLOR_BUTTONTEXT ), @@ -1093,7 +1093,7 @@ void AxCommandButtonModel::convertFromProperties( PropertySet& rPropSet, const C AxFontDataModel::convertFromProperties( rPropSet, rConv ); } -// ============================================================================ + AxLabelModel::AxLabelModel() : mnTextColor( AX_SYSCOLOR_BUTTONTEXT ), @@ -1225,7 +1225,7 @@ void AxLabelModel::convertProperties( PropertyMap& rPropMap, const ControlConver AxFontDataModel::convertProperties( rPropMap, rConv ); } -// ============================================================================ + AxImageModel::AxImageModel() : mnBackColor( AX_SYSCOLOR_BUTTONFACE ), @@ -1346,7 +1346,7 @@ void AxImageModel::convertProperties( PropertyMap& rPropMap, const ControlConver AxControlModelBase::convertProperties( rPropMap, rConv ); } -// ============================================================================ + AxTabStripModel::AxTabStripModel() : mnListIndex( 0 ), @@ -1575,7 +1575,7 @@ void AxMorphDataModelBase::convertProperties( PropertyMap& rPropMap, const Contr AxFontDataModel::convertProperties( rPropMap, rConv ); } -// ============================================================================ + AxToggleButtonModel::AxToggleButtonModel() { @@ -1639,7 +1639,7 @@ void AxToggleButtonModel::exportCompObj( BinaryOutputStream& rOutStream ) rOutStream.writeMemory( aCompObj, sizeof( aCompObj ) ); } -// ============================================================================ + AxCheckBoxModel::AxCheckBoxModel() { @@ -1702,7 +1702,7 @@ void AxCheckBoxModel::exportCompObj( BinaryOutputStream& rOutStream ) }; rOutStream.writeMemory( aCompObj, sizeof( aCompObj ) ); } -// ============================================================================ + AxOptionButtonModel::AxOptionButtonModel() { @@ -1767,7 +1767,7 @@ void AxOptionButtonModel::exportCompObj( BinaryOutputStream& rOutStream ) rOutStream.writeMemory( aCompObj, sizeof( aCompObj ) ); } -// ============================================================================ + AxTextBoxModel::AxTextBoxModel() { @@ -1845,7 +1845,7 @@ void AxTextBoxModel::exportCompObj( BinaryOutputStream& rOutStream ) }; rOutStream.writeMemory( aCompObj, sizeof( aCompObj ) ); } -// ============================================================================ + AxNumericFieldModel::AxNumericFieldModel() { @@ -1908,7 +1908,7 @@ void AxNumericFieldModel::exportCompObj( BinaryOutputStream& rOutStream ) }; rOutStream.writeMemory( aCompObj, sizeof( aCompObj ) ); } -// ============================================================================ + AxListBoxModel::AxListBoxModel() { @@ -1965,7 +1965,7 @@ void AxListBoxModel::exportCompObj( BinaryOutputStream& rOutStream ) }; rOutStream.writeMemory( aCompObj, sizeof( aCompObj ) ); } -// ============================================================================ + AxComboBoxModel::AxComboBoxModel() { @@ -2053,7 +2053,7 @@ void AxComboBoxModel::exportCompObj( BinaryOutputStream& rOutStream ) }; rOutStream.writeMemory( aCompObj, sizeof( aCompObj ) ); } -// ============================================================================ + AxSpinButtonModel::AxSpinButtonModel() : mnArrowColor( AX_SYSCOLOR_BUTTONTEXT ), @@ -2196,7 +2196,7 @@ void AxSpinButtonModel::exportCompObj( BinaryOutputStream& rOutStream ) rOutStream.writeMemory( aCompObj, sizeof( aCompObj ) ); } -// ============================================================================ + AxScrollBarModel::AxScrollBarModel() : mnArrowColor( AX_SYSCOLOR_BUTTONTEXT ), @@ -2349,7 +2349,7 @@ void AxScrollBarModel::convertFromProperties( PropertySet& rPropSet, const Contr } -// ============================================================================ + AxContainerModelBase::AxContainerModelBase( bool bFontSupport ) : AxFontDataModel( false ), // no support for alignment properties @@ -2454,7 +2454,7 @@ bool AxContainerModelBase::importClassTable( BinaryInputStream& rInStrm, AxClass return bValid; } -// ============================================================================ + AxFrameModel::AxFrameModel() : AxContainerModelBase( true ) @@ -2544,7 +2544,7 @@ void AxMultiPageModel::convertProperties( PropertyMap& rPropMap, const ControlCo } -// ============================================================================ + AxUserFormModel::AxUserFormModel() { @@ -2660,7 +2660,7 @@ HtmlTextBoxModel::importBinaryModel( BinaryInputStream& rInStrm ) #endif return true; } -// ============================================================================ + EmbeddedControl::EmbeddedControl( const OUString& rName ) : maName( rName ) @@ -2734,7 +2734,7 @@ bool EmbeddedControl::convertFromProperties( const Reference< XControlModel >& r return false; } -// ============================================================================ + EmbeddedForm::EmbeddedForm( const Reference< XModel >& rxDocModel, const Reference< XDrawPage >& rxDrawPage, const GraphicHelper& rGraphicHelper, bool bDefaultColorBgr ) : @@ -2799,7 +2799,7 @@ Reference< XIndexContainer > EmbeddedForm::createXForm() return mxFormIC; } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/axcontrolfragment.cxx b/oox/source/ole/axcontrolfragment.cxx index 7cd0cadb515b..6704eff5f4ce 100644 --- a/oox/source/ole/axcontrolfragment.cxx +++ b/oox/source/ole/axcontrolfragment.cxx @@ -29,7 +29,7 @@ namespace oox { namespace ole { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::uno; @@ -39,7 +39,7 @@ using ::oox::core::ContextHandlerRef; using ::oox::core::FragmentHandler2; using ::oox::core::XmlFilterBase; -// ============================================================================ + AxControlPropertyContext::AxControlPropertyContext( FragmentHandler2& rFragment, ControlModelBase& rModel ) : ContextHandler2( rFragment ), @@ -84,7 +84,7 @@ ContextHandlerRef AxControlPropertyContext::onCreateContext( sal_Int32 nElement, return 0; } -// ============================================================================ + AxControlFragment::AxControlFragment( XmlFilterBase& rFilter, const OUString& rFragmentPath, EmbeddedControl& rControl ) : FragmentHandler2( rFilter, rFragmentPath, true ), @@ -145,7 +145,7 @@ ContextHandlerRef AxControlFragment::onCreateContext( sal_Int32 nElement, const return 0; } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/axfontdata.cxx b/oox/source/ole/axfontdata.cxx index d2ccd396d827..ba93c7014482 100644 --- a/oox/source/ole/axfontdata.cxx +++ b/oox/source/ole/axfontdata.cxx @@ -25,7 +25,7 @@ namespace oox { namespace ole { -// ============================================================================ + AxFontData::AxFontData() : mnFontEffects( 0 ), @@ -111,7 +111,7 @@ bool AxFontData::importGuidAndFont( BinaryInputStream& rInStrm ) return false; } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/olehelper.cxx b/oox/source/ole/olehelper.cxx index 584fbec11ea8..fac3ec41733d 100644 --- a/oox/source/ole/olehelper.cxx +++ b/oox/source/ole/olehelper.cxx @@ -44,7 +44,7 @@ namespace oox { namespace ole { -// ============================================================================ + using ::com::sun::star::form::XFormComponent; using ::com::sun::star::form::XForm; @@ -70,7 +70,7 @@ using ::com::sun::star::lang::XServiceInfo; using namespace ::com::sun::star::form; -// ============================================================================ + namespace { @@ -211,7 +211,7 @@ void lclAppendHex( OUStringBuffer& orBuffer, Type nValue ) } // namespace -// ============================================================================ + StdFontInfo::StdFontInfo() : mnHeight( 0 ), @@ -231,7 +231,7 @@ StdFontInfo::StdFontInfo( const OUString& rName, sal_uInt32 nHeight, { } -// ============================================================================ + sal_Int32 OleHelper::decodeOleColor( const GraphicHelper& rGraphicHelper, sal_uInt32 nOleColor, bool bDefaultColorBgr ) @@ -717,7 +717,7 @@ const Reference< XShapes >& MSConvertOCXControls::GetShapes() return mxShapes; } #endif -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/oleobjecthelper.cxx b/oox/source/ole/oleobjecthelper.cxx index 9f3f27da30c6..9c43b5425985 100644 --- a/oox/source/ole/oleobjecthelper.cxx +++ b/oox/source/ole/oleobjecthelper.cxx @@ -32,7 +32,7 @@ namespace oox { namespace ole { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::container; @@ -41,7 +41,7 @@ using namespace ::com::sun::star::io; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::uno; -// ============================================================================ + OleObjectInfo::OleObjectInfo() : mbLinked( false ), @@ -50,7 +50,7 @@ OleObjectInfo::OleObjectInfo() : { } -// ============================================================================ + OleObjectHelper::OleObjectHelper( const Reference< XMultiServiceFactory >& rxModelFactory ) : maEmbeddedObjScheme( "vnd.sun.star.EmbeddedObject:" ), @@ -124,7 +124,7 @@ bool OleObjectHelper::importOleObject( PropertyMap& rPropMap, const OleObjectInf return bRet; } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/olestorage.cxx b/oox/source/ole/olestorage.cxx index c7ce3aa7cf95..b0be04d781fa 100644 --- a/oox/source/ole/olestorage.cxx +++ b/oox/source/ole/olestorage.cxx @@ -38,7 +38,7 @@ namespace oox { namespace ole { -// ============================================================================ + using namespace ::com::sun::star::beans; using namespace ::com::sun::star::container; @@ -47,7 +47,7 @@ using namespace ::com::sun::star::io; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -169,7 +169,7 @@ void OleOutputStream::ensureConnected() const throw( NotConnectedException ) } // namespace -// ============================================================================ + OleStorage::OleStorage( const Reference< XComponentContext >& rxContext, const Reference< XInputStream >& rxInStream, bool bBaseStreamAccess ) : @@ -390,7 +390,7 @@ void OleStorage::implCommit() const } } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/vbacontrol.cxx b/oox/source/ole/vbacontrol.cxx index 19a87087caba..818f8789b802 100644 --- a/oox/source/ole/vbacontrol.cxx +++ b/oox/source/ole/vbacontrol.cxx @@ -159,7 +159,7 @@ VbaDummyFormControl::VbaDummyFormControl( const OUString& rName ) } // namespace -// ============================================================================ + VbaSiteModel::VbaSiteModel() : maPos( 0, 0 ), @@ -318,7 +318,7 @@ void VbaSiteModel::convertProperties( PropertyMap& rPropMap, } } -// ============================================================================ + VbaFormControl::VbaFormControl() { @@ -722,7 +722,7 @@ bool VbaFormControl::compareByTabIndex( const VbaFormControlRef& rxLeft, const V return nLeftTabIndex < nRightTabIndex; } -// ============================================================================ + namespace { @@ -868,7 +868,7 @@ void VbaUserForm::importForm( const Reference< XNameContainer >& rxDialogLib, } } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/vbahelper.cxx b/oox/source/ole/vbahelper.cxx index 92c956218d52..4219ceeda462 100644 --- a/oox/source/ole/vbahelper.cxx +++ b/oox/source/ole/vbahelper.cxx @@ -24,11 +24,11 @@ namespace oox { namespace ole { -// ============================================================================ + using namespace ::com::sun::star::uno; -// ============================================================================ + bool VbaHelper::readDirRecord( sal_uInt16& rnRecId, StreamDataSequence& rRecData, BinaryInputStream& rInStrm ) { @@ -57,7 +57,7 @@ bool VbaHelper::extractKeyValue( OUString& rKey, OUString& rValue, const OUStrin return false; } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/vbainputstream.cxx b/oox/source/ole/vbainputstream.cxx index 54cbf3973225..56b4d12eaea6 100644 --- a/oox/source/ole/vbainputstream.cxx +++ b/oox/source/ole/vbainputstream.cxx @@ -23,7 +23,7 @@ namespace oox { namespace ole { -// ============================================================================ + namespace { @@ -36,7 +36,7 @@ const sal_uInt16 VBACHUNK_LENMASK = 0x0FFF; } // namespace -// ============================================================================ + VbaInputStream::VbaInputStream( BinaryInputStream& rInStrm ) : BinaryStreamBase( false ), @@ -208,7 +208,7 @@ bool VbaInputStream::updateChunk() return !mbEof; } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/vbamodule.cxx b/oox/source/ole/vbamodule.cxx index 3228a01e9b95..64eb7237f68d 100644 --- a/oox/source/ole/vbamodule.cxx +++ b/oox/source/ole/vbamodule.cxx @@ -36,7 +36,7 @@ namespace oox { namespace ole { -// ============================================================================ + using namespace ::com::sun::star::lang; using namespace ::com::sun::star::script::vba; @@ -44,7 +44,7 @@ using namespace ::com::sun::star::uno; using namespace ::com::sun::star; using ::com::sun::star::awt::KeyEvent; -// ============================================================================ + typedef ::cppu::WeakImplHelper1< container::XIndexContainer > OleIdToNameContainer_BASE; typedef boost::unordered_map< sal_Int32, OUString > ObjIdToName; @@ -111,7 +111,7 @@ public: } }; - // ============================================================================ + VbaModule::VbaModule( const Reference< XComponentContext >& rxContext, const Reference< frame::XModel >& rxDocModel, @@ -406,7 +406,7 @@ void VbaModule::createModule( const OUString& rVBASourceCode, } } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/ole/vbaproject.cxx b/oox/source/ole/vbaproject.cxx index 2d881734d4de..99f07c5e88af 100644 --- a/oox/source/ole/vbaproject.cxx +++ b/oox/source/ole/vbaproject.cxx @@ -47,7 +47,7 @@ namespace oox { namespace ole { -// ============================================================================ + using namespace ::com::sun::star::container; using namespace ::com::sun::star::document; @@ -61,7 +61,7 @@ using namespace ::com::sun::star::uno; using ::comphelper::ConfigurationHelper; -// ============================================================================ + namespace { @@ -117,7 +117,7 @@ bool VbaFilterConfig::isExportVba() const return lclReadConfigItem( mxConfigAccess, "Save" ); } -// ============================================================================ + VbaMacroAttacherBase::VbaMacroAttacherBase( const OUString& rMacroName ) : maMacroName( rMacroName ) @@ -140,7 +140,7 @@ void VbaMacroAttacherBase::resolveAndAttachMacro( const Reference< XVBAMacroReso } } -// ============================================================================ + VbaProject::VbaProject( const Reference< XComponentContext >& rxContext, const Reference< XModel >& rxDocModel, const OUString& rConfigCompName ) : @@ -562,7 +562,7 @@ void VbaProject::copyStorage( StorageBase& rVbaPrjStrg ) } } -// ============================================================================ + } // namespace ole } // namespace oox diff --git a/oox/source/shape/ShapeFilterBase.hxx b/oox/source/shape/ShapeFilterBase.hxx index 330eee1d4f4a..796db69c4046 100644 --- a/oox/source/shape/ShapeFilterBase.hxx +++ b/oox/source/shape/ShapeFilterBase.hxx @@ -30,7 +30,7 @@ namespace oox { namespace shape { -// ============================================================================ + class ShapeFilterBase : public core::XmlFilterBase { @@ -70,7 +70,7 @@ private: ::oox::drawingml::ThemePtr mpTheme; }; -// ============================================================================ + } // namespace shape } // namespace oox diff --git a/oox/source/token/namespacemap.cxx b/oox/source/token/namespacemap.cxx index faa9f6b840df..4c4766b4f745 100644 --- a/oox/source/token/namespacemap.cxx +++ b/oox/source/token/namespacemap.cxx @@ -21,7 +21,7 @@ namespace oox { -// ============================================================================ + NamespaceMap::NamespaceMap() { @@ -37,6 +37,6 @@ NamespaceMap::NamespaceMap() } } -// ============================================================================ + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/oox/source/token/namespaces.hxx.head b/oox/source/token/namespaces.hxx.head index d00a3804a197..a7eea7a9c47a 100644 --- a/oox/source/token/namespaces.hxx.head +++ b/oox/source/token/namespaces.hxx.head @@ -22,6 +22,3 @@ #include <sal/types.h> namespace oox { - -// ============================================================================ - diff --git a/oox/source/token/namespaces.hxx.tail b/oox/source/token/namespaces.hxx.tail index e0baeae0a315..43bb1ea0a6f2 100644 --- a/oox/source/token/namespaces.hxx.tail +++ b/oox/source/token/namespaces.hxx.tail @@ -16,7 +16,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -// ============================================================================ + const sal_Int32 TOKEN_MASK = static_cast< sal_Int32 >( (1 << NMSP_SHIFT) - 1 ); const sal_Int32 NMSP_MASK = static_cast< sal_Int32 >( SAL_MAX_INT32 & ~TOKEN_MASK ); @@ -55,7 +55,7 @@ inline sal_Int32 getNamespace( sal_Int32 nToken ) { return nToken & NMSP_MASK; } #define WPS_TOKEN( token ) OOX_TOKEN( wps, token ) #define WPG_TOKEN( token ) OOX_TOKEN( wpg, token ) -// ============================================================================ + } // namespace oox diff --git a/oox/source/token/properties.hxx.head b/oox/source/token/properties.hxx.head index d3d5a40acd9b..22cda5af9537 100644 --- a/oox/source/token/properties.hxx.head +++ b/oox/source/token/properties.hxx.head @@ -22,6 +22,3 @@ #include <sal/types.h> namespace oox { - -// ============================================================================ - diff --git a/oox/source/token/properties.hxx.tail b/oox/source/token/properties.hxx.tail index f647337e529c..1e11f26ceb3c 100644 --- a/oox/source/token/properties.hxx.tail +++ b/oox/source/token/properties.hxx.tail @@ -1,5 +1,5 @@ -// ============================================================================ + } // namespace oox diff --git a/oox/source/token/propertynames.cxx b/oox/source/token/propertynames.cxx index 2e07636e5083..a3fce1fe889c 100644 --- a/oox/source/token/propertynames.cxx +++ b/oox/source/token/propertynames.cxx @@ -21,7 +21,7 @@ namespace oox { -// ============================================================================ + PropertyNameVector::PropertyNameVector() { @@ -38,7 +38,7 @@ PropertyNameVector::PropertyNameVector() push_back( OUString::createFromAscii( sppcPropertyNames[ nIndex ] ) ); } -// ============================================================================ + } // namespace oox diff --git a/oox/source/token/tokenmap.cxx b/oox/source/token/tokenmap.cxx index 7728b26bff06..6c1d4b378394 100644 --- a/oox/source/token/tokenmap.cxx +++ b/oox/source/token/tokenmap.cxx @@ -25,10 +25,10 @@ #include "oox/token/tokens.hxx" namespace oox { -// ============================================================================ + using ::com::sun::star::uno::Sequence; -// ============================================================================ + namespace { // include auto-generated Perfect_Hash @@ -46,7 +46,7 @@ namespace { #endif } // namespace -// ============================================================================ + TokenMap::TokenMap() : maTokenNames( static_cast< size_t >( XML_TOKEN_COUNT ) ) @@ -119,7 +119,7 @@ sal_Int32 TokenMap::getTokenPerfectHash( const char *pStr, sal_Int32 nLength ) c return pToken ? pToken->nToken : XML_TOKEN_INVALID; } -// ============================================================================ + } // namespace oox diff --git a/oox/source/token/tokens.hxx.head b/oox/source/token/tokens.hxx.head index d393d0763cc3..da1a7d34293d 100644 --- a/oox/source/token/tokens.hxx.head +++ b/oox/source/token/tokens.hxx.head @@ -22,6 +22,3 @@ #include <com/sun/star/xml/sax/FastToken.hpp> namespace oox { - -// ============================================================================ - diff --git a/oox/source/token/tokens.hxx.tail b/oox/source/token/tokens.hxx.tail index df4b5ef1a955..c77188b378d0 100644 --- a/oox/source/token/tokens.hxx.tail +++ b/oox/source/token/tokens.hxx.tail @@ -1,7 +1,7 @@ const sal_Int32 XML_TOKEN_INVALID = ::com::sun::star::xml::sax::FastToken::DONTKNOW; -// ============================================================================ + } // namespace oox diff --git a/oox/source/vml/vmldrawing.cxx b/oox/source/vml/vmldrawing.cxx index f76777d6c12c..d80155f8b3d4 100644 --- a/oox/source/vml/vmldrawing.cxx +++ b/oox/source/vml/vmldrawing.cxx @@ -37,7 +37,7 @@ namespace oox { namespace vml { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::awt; @@ -49,7 +49,7 @@ using namespace ::com::sun::star::uno; using ::oox::core::XmlFilterBase; -// ============================================================================ + namespace { @@ -70,7 +70,7 @@ sal_Int32 lclGetShapeId( const OUString& rShapeId ) } // namespace -// ============================================================================ + OleObjectInfo::OleObjectInfo( bool bDmlShape ) : mbAutoLoad( false ), @@ -83,7 +83,7 @@ void OleObjectInfo::setShapeId( sal_Int32 nShapeId ) maShapeId = lclGetShapeId( nShapeId ); } -// ============================================================================ + ControlInfo::ControlInfo() { @@ -94,7 +94,7 @@ void ControlInfo::setShapeId( sal_Int32 nShapeId ) maShapeId = lclGetShapeId( nShapeId ); } -// ============================================================================ + Drawing::Drawing( XmlFilterBase& rFilter, const Reference< XDrawPage >& rxDrawPage, DrawingType eType ) : mrFilter( rFilter ), @@ -290,7 +290,7 @@ void Drawing::notifyXShapeInserted( const Reference< XShape >& /*rxShape*/, { } -// ============================================================================ + } // namespace vml } // namespave oox diff --git a/oox/source/vml/vmldrawingfragment.cxx b/oox/source/vml/vmldrawingfragment.cxx index 7bbf4da22fc3..b8646a335383 100644 --- a/oox/source/vml/vmldrawingfragment.cxx +++ b/oox/source/vml/vmldrawingfragment.cxx @@ -27,13 +27,13 @@ namespace oox { namespace vml { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::uno; using namespace ::oox::core; -// ============================================================================ + DrawingFragment::DrawingFragment( XmlFilterBase& rFilter, const OUString& rFragmentPath, Drawing& rDrawing ) : FragmentHandler2( rFilter, rFragmentPath, false ), // do not trim whitespace, has been preprocessed by the input stream @@ -79,7 +79,7 @@ void DrawingFragment::finalizeImport() mrDrawing.finalizeFragmentImport(); } -// ============================================================================ + } // namespace vml } // namespace oox diff --git a/oox/source/vml/vmlformatting.cxx b/oox/source/vml/vmlformatting.cxx index b1e77075a4bf..86b303e94fb3 100644 --- a/oox/source/vml/vmlformatting.cxx +++ b/oox/source/vml/vmlformatting.cxx @@ -35,7 +35,7 @@ namespace oox { namespace vml { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::geometry; @@ -50,7 +50,7 @@ using ::com::sun::star::drawing::PolygonFlags; using ::com::sun::star::drawing::PolygonFlags_NORMAL; using ::com::sun::star::drawing::PolygonFlags_CONTROL; -// ============================================================================ + namespace { @@ -497,7 +497,7 @@ void ConversionHelper::decodeVmlPath( ::std::vector< ::std::vector< Point > >& r } } -// ============================================================================ + namespace { @@ -620,7 +620,7 @@ sal_Int32 lclGetDmlLineJoint( const OptValue< sal_Int32 >& roJoinStyle ) } // namespace -// ============================================================================ + void StrokeArrowModel::assignUsed( const StrokeArrowModel& rSource ) { @@ -629,7 +629,7 @@ void StrokeArrowModel::assignUsed( const StrokeArrowModel& rSource ) moArrowLength.assignIfUsed( rSource.moArrowLength ); } -// ============================================================================ + void StrokeModel::assignUsed( const StrokeModel& rSource ) { @@ -671,7 +671,7 @@ void StrokeModel::pushToPropMap( ShapePropertyMap& rPropMap, const GraphicHelper aLineProps.pushToPropMap( rPropMap, rGraphicHelper ); } -// ============================================================================ + void FillModel::assignUsed( const FillModel& rSource ) { @@ -809,7 +809,7 @@ void FillModel::pushToPropMap( ShapePropertyMap& rPropMap, const GraphicHelper& aFillProps.pushToPropMap( rPropMap, rGraphicHelper ); } -// ============================================================================ + ShadowModel::ShadowModel() : mbHasShadow(false) diff --git a/oox/source/vml/vmlinputstream.cxx b/oox/source/vml/vmlinputstream.cxx index 573e976b1c40..51c09b898962 100644 --- a/oox/source/vml/vmlinputstream.cxx +++ b/oox/source/vml/vmlinputstream.cxx @@ -29,12 +29,12 @@ namespace oox { namespace vml { -// ============================================================================ + using namespace ::com::sun::star::io; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -255,7 +255,7 @@ bool lclProcessCharacters( OStringBuffer& rBuffer, const OString& rChars ) } // namespace -// ============================================================================ + InputStream::InputStream( const Reference< XComponentContext >& rxContext, const Reference< XInputStream >& rxInStrm ) : // use single-byte ISO-8859-1 encoding which maps all byte characters to the first 256 Unicode characters @@ -384,7 +384,7 @@ OString InputStream::readToElementEnd() throw (IOException, RuntimeException) return aText; } -// ============================================================================ + } // namespace vml } // namespave oox diff --git a/oox/source/vml/vmlshape.cxx b/oox/source/vml/vmlshape.cxx index 1d50f40272f4..1728b3e9e390 100644 --- a/oox/source/vml/vmlshape.cxx +++ b/oox/source/vml/vmlshape.cxx @@ -66,7 +66,7 @@ using namespace ::com::sun::star::text; namespace oox { namespace vml { -// ============================================================================ + using namespace ::com::sun::star; using namespace ::com::sun::star::drawing; @@ -76,7 +76,7 @@ using namespace ::com::sun::star::io; using ::oox::core::XmlFilterBase; -// ============================================================================ + namespace { @@ -109,7 +109,7 @@ awt::Rectangle lclGetAbsRect( const awt::Rectangle& rRelRect, const awt::Rectang } // namespace -// ============================================================================ + ShapeTypeModel::ShapeTypeModel(): mbAutoHeight( sal_False ), @@ -208,7 +208,7 @@ awt::Rectangle ShapeType::getRelRectangle() const nWidth, nHeight ); } -// ============================================================================ + ClientData::ClientData() : mnObjType( XML_TOKEN_INVALID ), @@ -423,7 +423,7 @@ void ShapeBase::convertShapeProperties( const Reference< XShape >& rxShape ) con PropertySet( rxShape ).setProperties( aPropMap ); } -// ============================================================================ + SimpleShape::SimpleShape( Drawing& rDrawing, const OUString& rService ) : ShapeBase( rDrawing ), @@ -710,7 +710,7 @@ Reference< XShape > SimpleShape::createPictureObject( const Reference< XShapes > return xShape; } -// ============================================================================ + RectangleShape::RectangleShape( Drawing& rDrawing ) : SimpleShape( rDrawing, "com.sun.star.drawing.RectangleShape" ) @@ -744,14 +744,14 @@ Reference<XShape> RectangleShape::implConvertAndInsert(const Reference<XShapes>& return xShape; } -// ============================================================================ + EllipseShape::EllipseShape( Drawing& rDrawing ) : SimpleShape( rDrawing, "com.sun.star.drawing.EllipseShape" ) { } -// ============================================================================ + PolyLineShape::PolyLineShape( Drawing& rDrawing ) : SimpleShape( rDrawing, "com.sun.star.drawing.PolyLineShape" ) @@ -808,7 +808,7 @@ awt::Rectangle LineShape::getRelRectangle() const return aShapeRect; } -// ============================================================================ + BezierShape::BezierShape(Drawing& rDrawing) : SimpleShape(rDrawing, "com.sun.star.drawing.OpenBezierShape") @@ -910,7 +910,7 @@ Reference< XShape > BezierShape::implConvertAndInsert( const Reference< XShapes return xShape; } -// ============================================================================ + CustomShape::CustomShape( Drawing& rDrawing ) : SimpleShape( rDrawing, "com.sun.star.drawing.CustomShape" ) @@ -935,7 +935,7 @@ Reference< XShape > CustomShape::implConvertAndInsert( const Reference< XShapes return xShape; } -// ============================================================================ + ComplexShape::ComplexShape( Drawing& rDrawing ) : CustomShape( rDrawing ) @@ -1022,7 +1022,7 @@ Reference< XShape > ComplexShape::implConvertAndInsert( const Reference< XShapes return CustomShape::implConvertAndInsert( rxShapes, rShapeRect ); } -// ============================================================================ + GroupShape::GroupShape( Drawing& rDrawing ) : ShapeBase( rDrawing ), @@ -1104,7 +1104,7 @@ Reference< XShape > GroupShape::implConvertAndInsert( const Reference< XShapes > return xGroupShape; } -// ============================================================================ + } // namespace vml } // namespace oox diff --git a/oox/source/vml/vmlshapecontainer.cxx b/oox/source/vml/vmlshapecontainer.cxx index 5a4c362845ee..74f7c23061ac 100644 --- a/oox/source/vml/vmlshapecontainer.cxx +++ b/oox/source/vml/vmlshapecontainer.cxx @@ -25,13 +25,13 @@ namespace oox { namespace vml { -// ============================================================================ + using namespace ::com::sun::star::awt; using namespace ::com::sun::star::drawing; using namespace ::com::sun::star::uno; -// ============================================================================ + namespace { @@ -52,7 +52,7 @@ void lclMapShapesById( RefMap< OUString, ShapeType >& orMap, const RefVector< Sh } // namespace -// ============================================================================ + ShapeContainer::ShapeContainer( Drawing& rDrawing ) : mrDrawing( rDrawing ) @@ -135,7 +135,7 @@ void ShapeContainer::convertAndInsert( const Reference< XShapes >& rxShapes, con (*aIt)->convertAndInsert( rxShapes, pParentAnchor ); } -// ============================================================================ + } // namespace vml } // namespace oox diff --git a/oox/source/vml/vmlshapecontext.cxx b/oox/source/vml/vmlshapecontext.cxx index d8d39eb845fe..d213815dd8f1 100644 --- a/oox/source/vml/vmlshapecontext.cxx +++ b/oox/source/vml/vmlshapecontext.cxx @@ -28,7 +28,7 @@ namespace oox { namespace vml { -// ============================================================================ + using namespace ::com::sun::star; @@ -36,7 +36,7 @@ using ::oox::core::ContextHandler2; using ::oox::core::ContextHandler2Helper; using ::oox::core::ContextHandlerRef; -// ============================================================================ + namespace { @@ -134,7 +134,7 @@ bool lclDecodeVmlxBool( const OUString& rValue, bool bDefaultForEmpty ) } // namespace -// ============================================================================ + ShapeLayoutContext::ShapeLayoutContext( ContextHandler2Helper& rParent, Drawing& rDrawing ) : ContextHandler2( rParent ), @@ -163,7 +163,7 @@ ContextHandlerRef ShapeLayoutContext::onCreateContext( sal_Int32 nElement, const return 0; } -// ============================================================================ + ClientDataContext::ClientDataContext( ContextHandler2Helper& rParent, ClientData& rClientData, const AttributeList& rAttribs ) : @@ -225,7 +225,7 @@ void ClientDataContext::onEndElement() } } -// ============================================================================ + ShapeContextBase::ShapeContextBase( ContextHandler2Helper& rParent ) : ContextHandler2( rParent ) @@ -271,7 +271,7 @@ ContextHandlerRef ShapeContextBase::createShapeContext( ContextHandler2Helper& r return 0; } -// ============================================================================ + ShapeTypeContext::ShapeTypeContext( ContextHandler2Helper& rParent, ShapeType& rShapeType, const AttributeList& rAttribs ) : ShapeContextBase( rParent ), @@ -428,7 +428,7 @@ void ShapeTypeContext::setStyle( const OUString& rStyle ) } } -// ============================================================================ + ShapeContext::ShapeContext( ContextHandler2Helper& rParent, ShapeBase& rShape, const AttributeList& rAttribs ) : ShapeTypeContext( rParent, rShape, rAttribs ), @@ -520,7 +520,7 @@ void ShapeContext::setVmlPath( const OUString& rPath ) } -// ============================================================================ + GroupShapeContext::GroupShapeContext( ContextHandler2Helper& rParent, GroupShape& rShape, const AttributeList& rAttribs ) : ShapeContext( rParent, rShape, rAttribs ), @@ -536,7 +536,7 @@ ContextHandlerRef GroupShapeContext::onCreateContext( sal_Int32 nElement, const return xContext.get() ? xContext : ShapeContext::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + RectangleShapeContext::RectangleShapeContext( ContextHandler2Helper& rParent, const AttributeList& rAttribs, RectangleShape& rShape ) : ShapeContext( rParent, rShape, rAttribs ) @@ -548,7 +548,7 @@ ContextHandlerRef RectangleShapeContext::onCreateContext( sal_Int32 nElement, co // The parent class's context is fine return ShapeContext::onCreateContext( nElement, rAttribs ); } -// ============================================================================ + } // namespace vml } // namespace oox diff --git a/oox/source/vml/vmltextboxcontext.cxx b/oox/source/vml/vmltextboxcontext.cxx index 80cfd37aab93..ab3c11afb732 100644 --- a/oox/source/vml/vmltextboxcontext.cxx +++ b/oox/source/vml/vmltextboxcontext.cxx @@ -25,13 +25,13 @@ namespace oox { namespace vml { -// ============================================================================ + using ::oox::core::ContextHandler2; using ::oox::core::ContextHandler2Helper; using ::oox::core::ContextHandlerRef; -// ============================================================================ + TextPortionContext::TextPortionContext( ContextHandler2Helper& rParent, TextBox& rTextBox, TextParagraphModel& rParagraph, const TextFontModel& rParentFont, @@ -170,7 +170,7 @@ void TextPortionContext::onEndElement() mrTextBox.appendPortion( maParagraph, maFont, OUString( ' ' ) ); } -// ============================================================================ + TextBoxContext::TextBoxContext( ContextHandler2Helper& rParent, TextBox& rTextBox, const AttributeList& rAttribs, const GraphicHelper& graphicHelper ) : @@ -275,7 +275,7 @@ void TextBoxContext::onEndElement() } } -// ============================================================================ + } // namespace vml } // namespace oox |