diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-04-07 12:06:47 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-04-07 14:23:11 +0200 |
commit | 1946794ae09ba732022fe6a74ea45e304ab70b84 (patch) | |
tree | e32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /linguistic/source/convdicxml.hxx | |
parent | 5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (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 'linguistic/source/convdicxml.hxx')
-rw-r--r-- | linguistic/source/convdicxml.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/linguistic/source/convdicxml.hxx b/linguistic/source/convdicxml.hxx index b21c6cfb820e..512be697ea1f 100644 --- a/linguistic/source/convdicxml.hxx +++ b/linguistic/source/convdicxml.hxx @@ -45,7 +45,7 @@ class ConvDicXMLExport : public SvXMLExport public: ConvDicXMLExport( ConvDic &rConvDic, - const rtl::OUString &rFileName, + const OUString &rFileName, com::sun::star::uno::Reference< com::sun::star::xml::sax::XDocumentHandler > &rHandler) : SvXMLExport ( comphelper::getProcessComponentContext(), rFileName, ::com::sun::star::util::MeasureUnit::CM, rHandler ), @@ -58,7 +58,7 @@ public: } // XServiceInfo (override parent method) - ::rtl::OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException ); + OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException ); // SvXMLExport void _ExportAutoStyles() {} @@ -86,7 +86,7 @@ class ConvDicXMLImport : public SvXMLImport public: //!! see comment for pDic member - ConvDicXMLImport( ConvDic *pConvDic, const rtl::OUString /*&rFileName*/ ) : + ConvDicXMLImport( ConvDic *pConvDic, const OUString /*&rFileName*/ ) : SvXMLImport ( comphelper::getProcessComponentContext(), IMPORT_ALL ), pDic ( pConvDic ) { @@ -100,13 +100,13 @@ public: } // XServiceInfo (override parent method) - ::rtl::OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException ); + OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException ); virtual void SAL_CALL startDocument(void) throw( ::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException ); virtual void SAL_CALL endDocument(void) throw( ::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException ); virtual SvXMLImportContext * CreateContext( - sal_uInt16 nPrefix, const rtl::OUString &rLocalName, + sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList > &rxAttrList ); ConvDic * GetDic() { return pDic; } |