From 5a8e213663775133cfda1a5ed2dad69033d6b4f2 Mon Sep 17 00:00:00 2001 From: Hokwon Song Date: Tue, 2 Apr 2013 15:23:47 +0900 Subject: [PATCH] Updated sample code by DateTime change Change-Id: If0fe69ad61dbce784f3243c0239fab0ff30e216b Signed-off-by: Hokwon Song --- inc/FLclLocaleManager.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inc/FLclLocaleManager.h b/inc/FLclLocaleManager.h index 43df3c5..9ce72b7 100644 --- a/inc/FLclLocaleManager.h +++ b/inc/FLclLocaleManager.h @@ -81,7 +81,8 @@ LocaleApp::LocaleExample1(void) // Gets the formatted date/time that is localized. DateTimeFormatter* pDateTimeFormatter = DateTimeFormatter::CreateDateTimeFormatterN(systemLocale); - DateTime dateTime(2009, 2, 24, 15, 22, 00); + DateTime dateTime; + dateTime.SetValue(2009, 2, 24, 15, 22, 00); pDateTimeFormatter->Format(dateTime, formattedString); // Gets the currency symbol that is localized. -- 2.7.4