summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-11-20 10:26:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-11-20 12:31:32 +0100
commit4f4486c61d3e437059a2ac77aae012489f5c7e25 (patch)
tree408c9a71e3a2d2c4a921ce3a376546ccadae4437 /unoxml
parentfda2ee3d87600ce7ecbec5528ea80b8e9758f584 (diff)
look for =() in loplugin:unnecessaryparen
Change-Id: I4f9b71ff7767e90987bb40358fc46ed5d1d571d0 Reviewed-on: https://gerrit.libreoffice.org/44944 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/dom/documentbuilder.cxx2
-rw-r--r--unoxml/source/dom/saxbuilder.cxx2
-rw-r--r--unoxml/source/xpath/xpathapi.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/unoxml/source/dom/documentbuilder.cxx b/unoxml/source/dom/documentbuilder.cxx
index f32d92cf81a6..db0b59f01090 100644
--- a/unoxml/source/dom/documentbuilder.cxx
+++ b/unoxml/source/dom/documentbuilder.cxx
@@ -115,7 +115,7 @@ namespace DOM
Sequence<OUString> aSequence;
for (int i=0; aSupportedServiceNames[i]!=nullptr; i++) {
aSequence.realloc(i+1);
- aSequence[i]=(OUString::createFromAscii(aSupportedServiceNames[i]));
+ aSequence[i] = OUString::createFromAscii(aSupportedServiceNames[i]);
}
return aSequence;
}
diff --git a/unoxml/source/dom/saxbuilder.cxx b/unoxml/source/dom/saxbuilder.cxx
index 33c7b2b9b2e3..b62dd3f839a2 100644
--- a/unoxml/source/dom/saxbuilder.cxx
+++ b/unoxml/source/dom/saxbuilder.cxx
@@ -59,7 +59,7 @@ namespace DOM
Sequence<OUString> aSequence;
for (int i=0; aSupportedServiceNames[i]!=nullptr; i++) {
aSequence.realloc(i+1);
- aSequence[i]=(OUString::createFromAscii(aSupportedServiceNames[i]));
+ aSequence[i] = OUString::createFromAscii(aSupportedServiceNames[i]);
}
return aSequence;
}
diff --git a/unoxml/source/xpath/xpathapi.cxx b/unoxml/source/xpath/xpathapi.cxx
index 8d3bf6afa596..3dbaa0a2369f 100644
--- a/unoxml/source/xpath/xpathapi.cxx
+++ b/unoxml/source/xpath/xpathapi.cxx
@@ -73,7 +73,7 @@ namespace XPath
Sequence<OUString> aSequence;
for (int i=0; aSupportedServiceNames[i]!=nullptr; i++) {
aSequence.realloc(i+1);
- aSequence[i]=(OUString::createFromAscii(aSupportedServiceNames[i]));
+ aSequence[i] = OUString::createFromAscii(aSupportedServiceNames[i]);
}
return aSequence;
}