diff options
author | Herbert Dürr <hdu@apache.org> | 2014-01-21 13:56:09 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-21 15:08:43 +0000 |
commit | 2cb1a05e867c17328ef24bd3489f3c18d80dfcf4 (patch) | |
tree | b77e4b49aa3cf217873a2fec791ad4000975715c /sc | |
parent | 656babddbc862d0d2498c79f616db839577a80ae (diff) |
get rid of an extraneous parentheses in "if((A==B))"
(cherry picked from commit 275a1d7a011e79a7f9c44c51e947d2cb50197051)
Conflicts:
basctl/source/dlged/dlged.cxx
dbaccess/source/ui/querydesign/JoinTableView.cxx
sc/source/filter/xml/XMLChangeTrackingImportHelper.cxx
svtools/source/edit/syntaxhighlight.cxx
svx/source/unodraw/unoshape.cxx
sw/source/ui/app/appopt.cxx
vcl/osx/salinst.cxx
Change-Id: If4ddf4ab23dbcfc4ba280948c73664b9794aecc7
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/XMLStylesExportHelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xml/XMLStylesExportHelper.cxx b/sc/source/filter/xml/XMLStylesExportHelper.cxx index c3d862d02290..6a50503764a4 100644 --- a/sc/source/filter/xml/XMLStylesExportHelper.cxx +++ b/sc/source/filter/xml/XMLStylesExportHelper.cxx @@ -320,7 +320,7 @@ void ScMyValidationsContainer::WriteMessage(ScXMLExport& rExport, bool bPrevCharWasSpace(true); while(i < sText.getLength()) { - if ((sText[i] == '\n')) + if( sText[i] == '\n') { SvXMLElementExport aElemP(rExport, XML_NAMESPACE_TEXT, XML_P, true, false); rExport.GetTextParagraphExport()->exportText(sTemp.makeStringAndClear(), bPrevCharWasSpace); |