From 327625baae9c78eebf4e66700064971658902c0f Mon Sep 17 00:00:00 2001 From: syed khaja moinuddin Date: Tue, 4 Jun 2013 14:02:05 +0530 Subject: [PATCH] Changes in initializing boolean variables in Tab and SlidableGroupedList. Signed-off-by: syed khaja moinuddin Change-Id: I0ba68df0ee75654a74c5fa08120567eee8f1f84f --- src/ui/controls/FUiCtrl_SlidableGroupedListImpl.cpp | 2 +- src/ui/controls/FUiCtrl_Tab.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/controls/FUiCtrl_SlidableGroupedListImpl.cpp b/src/ui/controls/FUiCtrl_SlidableGroupedListImpl.cpp index e578235..6d77a92 100644 --- a/src/ui/controls/FUiCtrl_SlidableGroupedListImpl.cpp +++ b/src/ui/controls/FUiCtrl_SlidableGroupedListImpl.cpp @@ -575,6 +575,7 @@ _SlidableGroupedListImpl::_SlidableGroupedListImpl(Control* pList, _TableView* p , __loadedCount(0) , __isFullUpdate(false) , __pItemProvider(null) + , __isUnloading(false) , __directDelete(false) , __forceScroll(false) , __isCreating(false) @@ -582,7 +583,6 @@ _SlidableGroupedListImpl::_SlidableGroupedListImpl(Control* pList, _TableView* p , __groupItemHeight(0) , __itemCacheSize(0) , __pItemFormat(null) - , __isUnloading(false) { } diff --git a/src/ui/controls/FUiCtrl_Tab.cpp b/src/ui/controls/FUiCtrl_Tab.cpp index 6b2a57a..f3705b1 100644 --- a/src/ui/controls/FUiCtrl_Tab.cpp +++ b/src/ui/controls/FUiCtrl_Tab.cpp @@ -39,6 +39,7 @@ namespace Tizen { namespace Ui { namespace Controls { _Tab::_Tab(void) : __pTabPresenter(null) + , __isInFocusMode(false) , __style(_TAB_STYLE_TEXT) , __currentHighlightedItemIndex(-1) , __tabStatus(_TAB_STATUS_NORMAL) @@ -51,7 +52,6 @@ _Tab::_Tab(void) , __pPressedItemBackgroundEffectBitmap(null) , __pSelectedItemBackgroundBitmap(null) , __pHighlightedItemBackgroundBitmap(null) - , __isInFocusMode(false) { ClearLastResult(); result r = E_SUCCESS; -- 2.7.4