Rewrite some (trivial) assignments inside if/while conditions: unotools

Change-Id: Iee52f5a3a815a782692a8ee962425ff2ab9173a8
This commit is contained in:
Stephan Bergmann
2016-11-29 17:17:48 +01:00
parent 8b30c5228b
commit 1c717c06c4

View File

@@ -342,8 +342,6 @@ bool ISO8601parseDate(const OUString &aDateStr, css::util::Date& rDate)
/** convert ISO8601 Time String to util::Time */
bool ISO8601parseTime(const OUString &aTimeStr, css::util::Time& rTime)
{
bool bSuccess = true;
sal_Int32 nHour = 0;
sal_Int32 nMin = 0;
sal_Int32 nSec = 0;
@@ -355,7 +353,8 @@ bool ISO8601parseTime(const OUString &aTimeStr, css::util::Time& rTime)
OUString tokTz;
bool bFrac = false;
// hours
if (bSuccess && (bSuccess = getISO8601TimeToken(aTimeStr, n, tokInt, bFrac, tokFrac)))
bool bSuccess = getISO8601TimeToken(aTimeStr, n, tokInt, bFrac, tokFrac);
if (bSuccess)
{
if ( bFrac && n < aTimeStr.getLength())
// is it junk or the timezone?