summaryrefslogtreecommitdiffstats
path: root/xmloff/source/chart/SchXMLParagraphContext.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/chart/SchXMLParagraphContext.hxx')
-rw-r--r--xmloff/source/chart/SchXMLParagraphContext.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/xmloff/source/chart/SchXMLParagraphContext.hxx b/xmloff/source/chart/SchXMLParagraphContext.hxx
index ba246ee75a11..8c2b922f60b4 100644
--- a/xmloff/source/chart/SchXMLParagraphContext.hxx
+++ b/xmloff/source/chart/SchXMLParagraphContext.hxx
@@ -30,25 +30,25 @@ namespace com { namespace sun { namespace star { namespace xml { namespace sax {
class SchXMLParagraphContext : public SvXMLImportContext
{
private:
- ::rtl::OUString& mrText;
- ::rtl::OUString* mpId;
- ::rtl::OUStringBuffer maBuffer;
+ OUString& mrText;
+ OUString* mpId;
+ OUStringBuffer maBuffer;
public:
SchXMLParagraphContext( SvXMLImport& rImport,
- const ::rtl::OUString& rLocalName,
- ::rtl::OUString& rText,
- ::rtl::OUString * pOutId = 0 );
+ const OUString& rLocalName,
+ OUString& rText,
+ OUString * pOutId = 0 );
virtual ~SchXMLParagraphContext();
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
virtual void EndElement();
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 Characters( const rtl::OUString& rChars );
+ virtual void Characters( const OUString& rChars );
};
#endif // _SCH_XMLPARAGRAPHCONTEXT_HXX_