i18npool/source/calendar/calendarImpl.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
New commits: commit e5197c727b0bac54c4945068d37942a9d7b524e7 Author: Michael Stahl <[email protected]> Date: Fri Sep 22 11:43:40 2017 +0200 i18npool: -Werror=misleading-indentation Change-Id: I399f8266bf543aa7b31d7833bd27aa7bec8a6708 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(); } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
