BDateFormat: Properly map day values to ICU day-of-week.

Signed-off-by: Adrien Destugues <[email protected]>
This commit is contained in:
Akshay Agarwal
2017-09-16 17:42:54 +02:00
committed by Adrien Destugues
parent 958b7451be
commit 42745b94f8
2 changed files with 10 additions and 1 deletions
+9
View File
@@ -84,10 +84,19 @@ public:
BDate& output);
private:
int _ConvertDayNumberToICU(int day) const;
U_ICU_NAMESPACE::DateFormat* _CreateDateFormatter(
const BDateFormatStyle style) const;
};
inline int
BDateFormat::_ConvertDayNumberToICU(int day) const
{
return day == 7 ? 1 : day + 1;
}
#endif // _B_DATE_FORMAT_H_