From: Tom Robinson Date: Wed, 22 Jul 2015 15:31:02 +0000 (+0100) Subject: UTC test fix and Adaptors initialising accessibility correctly X-Git-Tag: dali_1.0.51~7^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F01%2F44501%2F3;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git UTC test fix and Adaptors initialising accessibility correctly Change-Id: Ic5852d5c3a507052bf2333d5d4329a72d9e531f0 --- diff --git a/adaptors/tizen/accessibility-adaptor-impl-tizen.cpp b/adaptors/tizen/accessibility-adaptor-impl-tizen.cpp index c9c0b00..bcc2332 100644 --- a/adaptors/tizen/accessibility-adaptor-impl-tizen.cpp +++ b/adaptors/tizen/accessibility-adaptor-impl-tizen.cpp @@ -265,10 +265,11 @@ void AccessibilityAdaptor::SetIndicator(Indicator* indicator) } AccessibilityAdaptor::AccessibilityAdaptor() -: mIsEnabled(false), - mActionHandler(NULL), - mIndicator(NULL), - mIndicatorFocused(false) +: mIsEnabled( false ), + mReadPosition(), + mActionHandler( NULL ), + mIndicator( NULL), + mIndicatorFocused( false ) { mIsEnabled = GetEnabledVConf(); DALI_LOG_INFO( gAccessibilityAdaptorLogFilter, Debug::General, "[%s:%d] %s\n", __FUNCTION__, __LINE__, mIsEnabled ? "ENABLED" : "DISABLED" ); diff --git a/adaptors/ubuntu/accessibility-adaptor-impl-ubuntu.cpp b/adaptors/ubuntu/accessibility-adaptor-impl-ubuntu.cpp index a5a29ab..dec7918 100644 --- a/adaptors/ubuntu/accessibility-adaptor-impl-ubuntu.cpp +++ b/adaptors/ubuntu/accessibility-adaptor-impl-ubuntu.cpp @@ -227,10 +227,11 @@ void AccessibilityAdaptor::SetIndicator(Indicator* indicator) } AccessibilityAdaptor::AccessibilityAdaptor() -: mIsEnabled(false), - mActionHandler(NULL), - mIndicator(NULL), - mIndicatorFocused(false) +: mIsEnabled( false ), + mReadPosition(), + mActionHandler( NULL ), + mIndicator( NULL ), + mIndicatorFocused( false ) { int isEnabled = 0; DALI_LOG_INFO(gAccessibilityAdaptorLogFilter, Debug::General, "[%s:%d] %s\n", __FUNCTION__, __LINE__, isEnabled?"ENABLED":"DISABLED");