summaryrefslogtreecommitdiff
path: root/sax/source/tools/converter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sax/source/tools/converter.cxx')
-rw-r--r--sax/source/tools/converter.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx
index 121ae8a2ffa4..ad5cb8c19113 100644
--- a/sax/source/tools/converter.cxx
+++ b/sax/source/tools/converter.cxx
@@ -991,7 +991,7 @@ readUnsignedNumber(const OUString & rString,
io_rnPos = nPos;
o_rNumber = nTemp;
- return (bOverflow) ? R_OVERFLOW : R_SUCCESS;
+ return bOverflow ? R_OVERFLOW : R_SUCCESS;
}
static Result
@@ -1035,7 +1035,7 @@ readUnsignedNumberMaxDigits(int maxDigits,
io_rnPos = nPos;
o_rNumber = nTemp;
- return (bOverflow) ? R_OVERFLOW : R_SUCCESS;
+ return bOverflow ? R_OVERFLOW : R_SUCCESS;
}
static bool
@@ -1778,12 +1778,12 @@ static bool lcl_parseDateTime(
if (bSuccess)
{
- sal_Int16 const nTimezoneOffset = ((bHaveTimezoneMinus) ? (-1) : (+1))
+ sal_Int16 const nTimezoneOffset = (bHaveTimezoneMinus ? (-1) : (+1))
* ((nTimezoneHours * 60) + nTimezoneMinutes);
if (!pDate || bHaveTime) // time is optional
{
rDateTime.Year =
- ((isNegative) ? (-1) : (+1)) * static_cast<sal_Int16>(nYear);
+ (isNegative ? (-1) : (+1)) * static_cast<sal_Int16>(nYear);
rDateTime.Month = static_cast<sal_uInt16>(nMonth);
rDateTime.Day = static_cast<sal_uInt16>(nDay);
rDateTime.Hours = static_cast<sal_uInt16>(nHours);
@@ -1818,7 +1818,7 @@ static bool lcl_parseDateTime(
else
{
pDate->Year =
- ((isNegative) ? (-1) : (+1)) * static_cast<sal_Int16>(nYear);
+ (isNegative ? (-1) : (+1)) * static_cast<sal_Int16>(nYear);
pDate->Month = static_cast<sal_uInt16>(nMonth);
pDate->Day = static_cast<sal_uInt16>(nDay);
if (bHaveTimezone)