summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2017-09-22 11:43:40 +0200
committerMichael Stahl <mstahl@redhat.com>2017-09-22 11:44:25 +0200
commite5197c727b0bac54c4945068d37942a9d7b524e7 (patch)
treea21a4e1fbd1a2bddc2308f94e0097c9c04a6f009 /i18npool
parentf10d5eb1435952052447fcb09dc1ece25202a48a (diff)
i18npool: -Werror=misleading-indentation
Change-Id: I399f8266bf543aa7b31d7833bd27aa7bec8a6708
Diffstat (limited to 'i18npool')
-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();
}