diff options
author | Christian Lippka <cl@openoffice.org> | 2001-02-27 13:18:58 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-02-27 13:18:58 +0000 |
commit | 1c61feb4ee3a5be26f1928426cadc3a4ade24e27 (patch) | |
tree | cc2630359a864764108f7413722b4e8584122b6f | |
parent | a0d8e6981dc45d22bc5c23a03543d406c48c9685 (diff) |
fixed compile problems under solaris
-rw-r--r-- | svx/source/inc/xmlxtexp.hxx | 8 | ||||
-rw-r--r-- | svx/source/inc/xmlxtimp.hxx | 6 | ||||
-rw-r--r-- | svx/source/xml/xmlxtexp.cxx | 36 |
3 files changed, 25 insertions, 25 deletions
diff --git a/svx/source/inc/xmlxtexp.hxx b/svx/source/inc/xmlxtexp.hxx index fc58cfda0b3b..3e0b5cc0a49a 100644 --- a/svx/source/inc/xmlxtexp.hxx +++ b/svx/source/inc/xmlxtexp.hxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlxtexp.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: cl $ $Date: 2001-02-23 21:26:48 $ + * last change: $Author: cl $ $Date: 2001-02-27 14:18:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -90,9 +90,9 @@ public: ~SvxXMLXTableExportComponent(); - static sal_Bool save( const rtl::OUString& rURL, const com::sun::star::uno::Reference<::com::sun::star::container::XNameContainer >& xTable ) throw(); + static sal_Bool save( const rtl::OUString& rURL, const com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& xTable ) throw(); - sal_Bool export() throw(); + sal_Bool exportTable() throw(); // methods without content: virtual void _ExportAutoStyles(); diff --git a/svx/source/inc/xmlxtimp.hxx b/svx/source/inc/xmlxtimp.hxx index 89180ff6b5ee..b0fb0a77985a 100644 --- a/svx/source/inc/xmlxtimp.hxx +++ b/svx/source/inc/xmlxtimp.hxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlxtimp.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: cl $ $Date: 2001-02-23 21:26:48 $ + * last change: $Author: cl $ $Date: 2001-02-27 14:18:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -89,7 +89,7 @@ protected: const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList ); private: - const ::com::sun::star::uno::Reference<::com::sun::star::container::XNameContainer > & mrTable; + const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > & mrTable; }; #endif diff --git a/svx/source/xml/xmlxtexp.cxx b/svx/source/xml/xmlxtexp.cxx index 3e0f4b87cece..c55a6c8e476f 100644 --- a/svx/source/xml/xmlxtexp.cxx +++ b/svx/source/xml/xmlxtexp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlxtexp.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: cl $ $Date: 2001-02-23 21:35:17 $ + * last change: $Author: cl $ $Date: 2001-02-27 14:17:21 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -170,7 +170,7 @@ public: SvxXMLTableEntryExporter( SvXMLExport& rExport ) : mrExport( rExport ) {} virtual ~SvxXMLTableEntryExporter(); - virtual void export( const OUString& rStrName, const Any& rValue ) = 0; + virtual void exportEntry( const OUString& rStrName, const Any& rValue ) = 0; protected: SvXMLExport& mrExport; @@ -182,7 +182,7 @@ public: SvxXMLColorEntryExporter( SvXMLExport& rExport ); virtual ~SvxXMLColorEntryExporter(); - virtual void export( const OUString& rStrName, const Any& rValue ); + virtual void exportEntry( const OUString& rStrName, const Any& rValue ); }; class SvxXMLLineEndEntryExporter : public SvxXMLTableEntryExporter @@ -192,7 +192,7 @@ public: SvxXMLLineEndEntryExporter(); virtual ~SvxXMLLineEndEntryExporter(); - virtual void export( const OUString& rStrName, const Any& rValue ); + virtual void exportEntry( const OUString& rStrName, const Any& rValue ); private: XMLMarkerStyle maMarkerStyle; }; @@ -203,7 +203,7 @@ public: SvxXMLDashEntryExporter( SvXMLExport& rExport ); virtual ~SvxXMLDashEntryExporter(); - virtual void export( const OUString& rStrName, const Any& rValue ); + virtual void exportEntry( const OUString& rStrName, const Any& rValue ); private: XMLDashStyle maDashStyle; @@ -215,7 +215,7 @@ public: SvxXMLHatchEntryExporter( SvXMLExport& rExport ); virtual ~SvxXMLHatchEntryExporter(); - virtual void export( const OUString& rStrName, const Any& rValue ); + virtual void exportEntry( const OUString& rStrName, const Any& rValue ); private: XMLHatchStyle maHatchStyle; }; @@ -226,7 +226,7 @@ public: SvxXMLGradientEntryExporter( SvXMLExport& rExport ); virtual ~SvxXMLGradientEntryExporter(); - virtual void export( const OUString& rStrName, const Any& rValue ); + virtual void exportEntry( const OUString& rStrName, const Any& rValue ); private: XMLGradientStyle maGradientStyle; }; @@ -237,7 +237,7 @@ public: SvxXMLBitmapEntryExporter( SvXMLExport& rExport ); virtual ~SvxXMLBitmapEntryExporter(); - virtual void export( const OUString& rStrName, const Any& rValue ); + virtual void exportEntry( const OUString& rStrName, const Any& rValue ); private: XMLImageStyle maImageStyle; @@ -336,7 +336,7 @@ sal_Bool SvxXMLXTableExportComponent::save( const OUString& rURL, const uno::Ref const OUString aName; SvxXMLXTableExportComponent aExporter( aName, xHandler, xTable, xGrfResolver ); - bRet = aExporter.export(); + bRet = aExporter.exportTable(); } while( 0 ); @@ -355,7 +355,7 @@ sal_Bool SvxXMLXTableExportComponent::save( const OUString& rURL, const uno::Ref return bRet; } -sal_Bool SvxXMLXTableExportComponent::export() throw() +sal_Bool SvxXMLXTableExportComponent::exportTable() throw() { sal_Bool bRet = sal_False; @@ -431,7 +431,7 @@ sal_Bool SvxXMLXTableExportComponent::export() throw() for( nIndex = 0; nIndex < nCount; nIndex++, pNames++ ) { aAny = mxTable->getByName( *pNames ); - pExporter->export( *pNames, aAny ); + pExporter->exportEntry( *pNames, aAny ); } bRet = sal_True; @@ -470,7 +470,7 @@ SvxXMLColorEntryExporter::~SvxXMLColorEntryExporter() { } -void SvxXMLColorEntryExporter::export( const OUString& rStrName, const Any& rValue ) +void SvxXMLColorEntryExporter::exportEntry( const OUString& rStrName, const Any& rValue ) { mrExport.AddAttribute( XML_NAMESPACE_DRAW, sXML_name, rStrName ); @@ -495,7 +495,7 @@ SvxXMLLineEndEntryExporter::~SvxXMLLineEndEntryExporter() { } -void SvxXMLLineEndEntryExporter::export( const OUString& rStrName, const Any& rValue ) +void SvxXMLLineEndEntryExporter::exportEntry( const OUString& rStrName, const Any& rValue ) { maMarkerStyle.exportXML( rStrName, rValue ); } @@ -511,7 +511,7 @@ SvxXMLDashEntryExporter::~SvxXMLDashEntryExporter() { } -void SvxXMLDashEntryExporter::export( const OUString& rStrName, const Any& rValue ) +void SvxXMLDashEntryExporter::exportEntry( const OUString& rStrName, const Any& rValue ) { maDashStyle.exportXML( rStrName, rValue ); } @@ -527,7 +527,7 @@ SvxXMLHatchEntryExporter::~SvxXMLHatchEntryExporter() { } -void SvxXMLHatchEntryExporter::export( const OUString& rStrName, const Any& rValue ) +void SvxXMLHatchEntryExporter::exportEntry( const OUString& rStrName, const Any& rValue ) { maHatchStyle.exportXML( rStrName, rValue ); } @@ -543,7 +543,7 @@ SvxXMLGradientEntryExporter::~SvxXMLGradientEntryExporter() { } -void SvxXMLGradientEntryExporter::export( const OUString& rStrName, const Any& rValue ) +void SvxXMLGradientEntryExporter::exportEntry( const OUString& rStrName, const Any& rValue ) { maGradientStyle.exportXML( rStrName, rValue ); } @@ -559,7 +559,7 @@ SvxXMLBitmapEntryExporter::~SvxXMLBitmapEntryExporter() { } -void SvxXMLBitmapEntryExporter::export( const OUString& rStrName, const Any& rValue ) +void SvxXMLBitmapEntryExporter::exportEntry( const OUString& rStrName, const Any& rValue ) { maImageStyle.exportXML( rStrName, rValue, mrExport ); } |