summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/SchXMLTableContext.hxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /xmloff/source/chart/SchXMLTableContext.hxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'xmloff/source/chart/SchXMLTableContext.hxx')
-rw-r--r--xmloff/source/chart/SchXMLTableContext.hxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/xmloff/source/chart/SchXMLTableContext.hxx b/xmloff/source/chart/SchXMLTableContext.hxx
index d983fc03a4e0..1d06dd50c613 100644
--- a/xmloff/source/chart/SchXMLTableContext.hxx
+++ b/xmloff/source/chart/SchXMLTableContext.hxx
@@ -51,13 +51,13 @@ private:
public:
SchXMLTableContext( SchXMLImportHelper& rImpHelper,
SvXMLImport& rImport,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
SchXMLTable& aTable );
virtual ~SchXMLTableContext();
virtual SvXMLImportContext* CreateChildContext(
sal_uInt16 nPrefix,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttrList );
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
virtual void EndElement();
@@ -71,8 +71,8 @@ public:
class SchXMLTableHelper
{
private:
- static void GetCellAddress( const rtl::OUString& rStr, sal_Int32& rCol, sal_Int32& rRow );
- static sal_Bool GetCellRangeAddress( const rtl::OUString& rStr, SchNumericCellRangeAddress& rResult );
+ static void GetCellAddress( const OUString& rStr, sal_Int32& rCol, sal_Int32& rRow );
+ static sal_Bool GetCellRangeAddress( const OUString& rStr, SchNumericCellRangeAddress& rResult );
static void PutTableContentIntoSequence(
const SchXMLTable& rTable,
SchNumericCellRangeAddress& rAddress,
@@ -112,13 +112,13 @@ private:
public:
SchXMLTableColumnsContext( SvXMLImport& rImport,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
SchXMLTable& aTable );
virtual ~SchXMLTableColumnsContext();
virtual SvXMLImportContext* CreateChildContext(
sal_uInt16 nPrefix,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttrList );
};
@@ -131,7 +131,7 @@ private:
public:
SchXMLTableColumnContext( SvXMLImport& rImport,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
SchXMLTable& aTable );
virtual ~SchXMLTableColumnContext();
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
@@ -150,13 +150,13 @@ private:
public:
SchXMLTableRowsContext( SchXMLImportHelper& rImpHelper,
SvXMLImport& rImport,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
SchXMLTable& aTable );
virtual ~SchXMLTableRowsContext();
virtual SvXMLImportContext* CreateChildContext(
sal_uInt16 nPrefix,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttrList );
};
@@ -171,13 +171,13 @@ private:
public:
SchXMLTableRowContext( SchXMLImportHelper& rImpHelper,
SvXMLImport& rImport,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
SchXMLTable& aTable );
virtual ~SchXMLTableRowContext();
virtual SvXMLImportContext* CreateChildContext(
sal_uInt16 nPrefix,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttrList );
};
@@ -190,20 +190,20 @@ class SchXMLTableCellContext : public SvXMLImportContext
private:
SchXMLImportHelper& mrImportHelper;
SchXMLTable& mrTable;
- rtl::OUString maCellContent;
- rtl::OUString maRangeId;
+ OUString maCellContent;
+ OUString maRangeId;
sal_Bool mbReadText;
public:
SchXMLTableCellContext( SchXMLImportHelper& rImpHelper,
SvXMLImport& rImport,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
SchXMLTable& aTable );
virtual ~SchXMLTableCellContext();
virtual SvXMLImportContext* CreateChildContext(
sal_uInt16 nPrefix,
- const rtl::OUString& rLocalName,
+ const OUString& rLocalName,
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttrList );
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
virtual void EndElement();