Kaydet (Commit) e5197c72 authored tarafından Michael Stahl's avatar Michael Stahl

i18npool: -Werror=misleading-indentation

Change-Id: I399f8266bf543aa7b31d7833bd27aa7bec8a6708
üst f10d5eb1
......@@ -210,8 +210,8 @@ void SAL_CALL
CalendarImpl::setFirstDayOfWeek( sal_Int16 day )
{
if (!xCalendar.is())
throw ERROR ; xCalendar->setFirstDayOfWeek(day);
throw ERROR;
xCalendar->setFirstDayOfWeek(day);
}
void SAL_CALL
......@@ -243,8 +243,8 @@ sal_Int16 SAL_CALL
CalendarImpl::getNumberOfMonthsInYear()
{
if (!xCalendar.is())
throw ERROR ; return xCalendar->getNumberOfMonthsInYear();
throw ERROR;
return xCalendar->getNumberOfMonthsInYear();
}
......@@ -270,8 +270,8 @@ Sequence< CalendarItem > SAL_CALL
CalendarImpl::getMonths()
{
if (!xCalendar.is())
throw ERROR ; return xCalendar->getMonths();
throw ERROR;
return xCalendar->getMonths();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment