summaryrefslogtreecommitdiff
path: root/xmloff/inc/XMLStarBasicContextFactory.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/inc/XMLStarBasicContextFactory.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/inc/XMLStarBasicContextFactory.hxx')
-rw-r--r--xmloff/inc/XMLStarBasicContextFactory.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/xmloff/inc/XMLStarBasicContextFactory.hxx b/xmloff/inc/XMLStarBasicContextFactory.hxx
index 31d0a63599fd..d4d6654a647d 100644
--- a/xmloff/inc/XMLStarBasicContextFactory.hxx
+++ b/xmloff/inc/XMLStarBasicContextFactory.hxx
@@ -34,10 +34,10 @@ class XMLEventsImportContext;
class XMLStarBasicContextFactory : public XMLEventContextFactory
{
- const ::rtl::OUString sEventType;
- const ::rtl::OUString sLibrary;
- const ::rtl::OUString sMacroName;
- const ::rtl::OUString sStarBasic;
+ const OUString sEventType;
+ const OUString sLibrary;
+ const OUString sMacroName;
+ const OUString sStarBasic;
public:
XMLStarBasicContextFactory();
@@ -46,15 +46,15 @@ public:
virtual SvXMLImportContext* CreateContext(
SvXMLImport& rImport, /// import context
sal_uInt16 nPrefix, /// element: namespace prefix
- const ::rtl::OUString& rLocalName, /// element: local name
+ const OUString& rLocalName, /// element: local name
const ::com::sun::star::uno::Reference< /// attribute list
::com::sun::star::xml::sax::XAttributeList> & xAttrList,
/// the context for the enclosing <script:events> element
XMLEventsImportContext* rEvents,
/// the event name (as understood by the API)
- const ::rtl::OUString& rApiEventName,
+ const OUString& rApiEventName,
/// the event type name (as registered)
- const ::rtl::OUString& rLanguage);
+ const OUString& rLanguage);
};
#endif