summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--i18npool/source/calendar/calendarImpl.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/i18npool/source/calendar/calendarImpl.cxx b/i18npool/source/calendar/calendarImpl.cxx
index 220a3a9fde78..d6820155b38c 100644
--- a/i18npool/source/calendar/calendarImpl.cxx
+++ b/i18npool/source/calendar/calendarImpl.cxx
@@ -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();
}