diff options
author | Noel Grandin <noel@peralex.com> | 2014-07-02 16:01:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-07-04 09:42:57 +0200 |
commit | 8b499cea76577b4221fccb17703aa9e86b625e90 (patch) | |
tree | 2530a40b2deac4670fbdaa4045481feffde66d76 /dbaccess | |
parent | f2d6eb4d96918de9b29a96749506b83b0e59293f (diff) |
fix spelling in class name OSpecialHanldeXMLExportPropertyMapper
Change-Id: Ideaa021f76f1c384150caad5ec6a41bf65bae28e
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/filter/xml/xmlExport.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dbaccess/source/filter/xml/xmlExport.cxx b/dbaccess/source/filter/xml/xmlExport.cxx index d173fa2d9ef1..da522f6b1d6f 100644 --- a/dbaccess/source/filter/xml/xmlExport.cxx +++ b/dbaccess/source/filter/xml/xmlExport.cxx @@ -170,10 +170,10 @@ namespace dbaxml } } - class OSpecialHanldeXMLExportPropertyMapper : public SvXMLExportPropertyMapper + class OSpecialHandleXMLExportPropertyMapper : public SvXMLExportPropertyMapper { public: - OSpecialHanldeXMLExportPropertyMapper(const rtl::Reference< XMLPropertySetMapper >& rMapper) : SvXMLExportPropertyMapper(rMapper ) + OSpecialHandleXMLExportPropertyMapper(const rtl::Reference< XMLPropertySetMapper >& rMapper) : SvXMLExportPropertyMapper(rMapper ) { } /** this method is called for every item that has the @@ -225,10 +225,10 @@ ODBExport::ODBExport(const Reference< XComponentContext >& _rxContext,sal_uInt16 _GetNamespaceMap().Add( GetXMLToken(XML_NP_NUMBER), GetXMLToken(XML_N_NUMBER), XML_NAMESPACE_NUMBER ); m_xExportHelper = new SvXMLExportPropertyMapper(GetTableStylesPropertySetMapper()); - m_xColumnExportHelper = new OSpecialHanldeXMLExportPropertyMapper(GetColumnStylesPropertySetMapper()); + m_xColumnExportHelper = new OSpecialHandleXMLExportPropertyMapper(GetColumnStylesPropertySetMapper()); - m_xCellExportHelper = new OSpecialHanldeXMLExportPropertyMapper(GetCellStylesPropertySetMapper()); - m_xRowExportHelper = new OSpecialHanldeXMLExportPropertyMapper(OXMLHelper::GetRowStylesPropertySetMapper( true)); + m_xCellExportHelper = new OSpecialHandleXMLExportPropertyMapper(GetCellStylesPropertySetMapper()); + m_xRowExportHelper = new OSpecialHandleXMLExportPropertyMapper(OXMLHelper::GetRowStylesPropertySetMapper( true)); GetAutoStylePool()->AddFamily( XML_STYLE_FAMILY_TABLE_TABLE, |