summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/characterdata.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-15 09:01:38 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-15 09:01:38 +0100
commit64089f779060203d892f1200ccd1a1875d9c53ff (patch)
tree78e0147db668d3c0b9f54d50ccddc9d6b205affa /unoxml/source/dom/characterdata.cxx
parent7aff8f8e16b8087b57161446b133c4a883a14c66 (diff)
More loplugin:cstylecast: unoxml
Change-Id: I832b0495f3510e853037e87e90da2fd04c21f8ad
Diffstat (limited to 'unoxml/source/dom/characterdata.cxx')
-rw-r--r--unoxml/source/dom/characterdata.cxx2
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();
}