[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - connectivity/source
Stephan Bergmann
sbergman at redhat.com
Tue Apr 26 19:34:48 UTC 2016
connectivity/source/parse/sqlnode.cxx | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
New commits:
commit eadc1f93747f493278affc42f361f99f079a2fbf
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Wed Jan 13 17:20:52 2016 +0100
-Werror=misleading-indentation (GCC 6)
Change-Id: Ide514da5b4413974e50beeb4f41881294475303c
(cherry picked from commit 39d6c6256f80a5b5c548f5e68849a1ef7140e32a)
Signed-off-by: David Tardon <dtardon at redhat.com>
Reviewed-on: https://gerrit.libreoffice.org/24409
Tested-by: Jenkins <ci at libreoffice.org>
diff --git a/connectivity/source/parse/sqlnode.cxx b/connectivity/source/parse/sqlnode.cxx
index 8111750..7f7fdeb 100644
--- a/connectivity/source/parse/sqlnode.cxx
+++ b/connectivity/source/parse/sqlnode.cxx
@@ -2450,7 +2450,8 @@ void OSQLParseNode::parseLeaf(OUStringBuffer& rString, const SQLParseNodeParamet
if ( rParam.aMetaData.getCatalogSeparator().isEmpty()
|| rString[rString.getLength() - 1] != rParam.aMetaData.getCatalogSeparator().toChar()
)
- rString.append(" "); break;
+ rString.append(" ");
+ break;
}
}
if (rParam.bQuote)
@@ -2506,7 +2507,8 @@ void OSQLParseNode::parseLeaf(OUStringBuffer& rString, const SQLParseNodeParamet
if ( rParam.aMetaData.getCatalogSeparator().isEmpty()
|| rString[rString.getLength() - 1] != rParam.aMetaData.getCatalogSeparator().toChar()
)
- rString.append(" "); break;
+ rString.append(" ");
+ break;
}
}
rString.append(m_aNodeValue);
More information about the Libreoffice-commits
mailing list