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
This commit is contained in:
Herbert Dürr
2014-01-21 13:56:09 +00:00
committed by Caolán McNamara
parent 656babddbc
commit 2cb1a05e86

View File

@@ -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);