summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-11 00:14:13 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-13 11:42:40 +0100
commit9318741208ac10efe85d2e70752f859ba0664539 (patch)
treeedaaae093f65179b25a74198121b10b015160600 /unoxml
parent068501f46fcc0029355fb854eb9416731df30bf8 (diff)
createFromAscii -> RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/dom/document.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unoxml/source/dom/document.cxx b/unoxml/source/dom/document.cxx
index 43ce284f40ee..50f4dc1c52e2 100644
--- a/unoxml/source/dom/document.cxx
+++ b/unoxml/source/dom/document.cxx
@@ -908,7 +908,7 @@ namespace DOM
OUString(RTL_CONSTASCII_USTRINGPARAM("DOMNodeInsertedIntoDocument"))),
UNO_QUERY_THROW);
event->initMutationEvent(
- OUString::createFromAscii("DOMNodeInsertedIntoDocument")
+ OUString(RTL_CONSTASCII_USTRINGPARAM("DOMNodeInsertedIntoDocument"))
, sal_True, sal_False, Reference< XNode >(),
OUString(), OUString(), OUString(), (AttrChangeType)0 );
Reference< XEventTarget > const xDocET(xDocument, UNO_QUERY);