From 2cb1a05e867c17328ef24bd3489f3c18d80dfcf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herbert=20D=C3=BCrr?= Date: Tue, 21 Jan 2014 13:56:09 +0000 Subject: [PATCH] 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 --- sc/source/filter/xml/XMLStylesExportHelper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);