diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-15 09:01:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-15 09:01:38 +0100 |
commit | 64089f779060203d892f1200ccd1a1875d9c53ff (patch) | |
tree | 78e0147db668d3c0b9f54d50ccddc9d6b205affa /unoxml/source/dom/characterdata.cxx | |
parent | 7aff8f8e16b8087b57161446b133c4a883a14c66 (diff) |
More loplugin:cstylecast: unoxml
Change-Id: I832b0495f3510e853037e87e90da2fd04c21f8ad
Diffstat (limited to 'unoxml/source/dom/characterdata.cxx')
-rw-r--r-- | unoxml/source/dom/characterdata.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unoxml/source/dom/characterdata.cxx b/unoxml/source/dom/characterdata.cxx index 3813a72899d0..2afc767995e3 100644 --- a/unoxml/source/dom/characterdata.cxx +++ b/unoxml/source/dom/characterdata.cxx @@ -52,7 +52,7 @@ namespace DOM event->initMutationEvent( "DOMCharacterDataModified", true, false, Reference< XNode >(), - prevValue, newValue, OUString(), (AttrChangeType)0 ); + prevValue, newValue, OUString(), AttrChangeType(0) ); dispatchEvent(event); dispatchSubtreeModified(); } |