From: Sreedeep Moulik Date: Thu, 4 Jul 2013 09:17:23 +0000 (+0530) Subject: TableView Accessibility - introducing space between element's labels - TDIS-6478 X-Git-Tag: submit/tizen_2.2/20130714.153149~104^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7c53f7459f50a996e55e546456a38ff9e530e6e2;p=framework%2Fosp%2Fuifw.git TableView Accessibility - introducing space between element's labels - TDIS-6478 Change-Id: I6eb58cd6d0030f7fbe397b17efe76d3b82a4d3c5 Signed-off-by: Sreedeep Moulik --- diff --git a/src/ui/controls/FUiCtrl_TableViewItem.cpp b/src/ui/controls/FUiCtrl_TableViewItem.cpp index 2895340..b728ed2 100644 --- a/src/ui/controls/FUiCtrl_TableViewItem.cpp +++ b/src/ui/controls/FUiCtrl_TableViewItem.cpp @@ -4456,6 +4456,7 @@ void _TableViewItem::SetAccessibilityElementLabel(void) { String accessibilityLabel; + String space = L" "; int childControlCount = GetChildCount(); int groupIndex = -1; int itemIndex = -1; @@ -4489,6 +4490,7 @@ _TableViewItem::SetAccessibilityElementLabel(void) if (accessibilityElements.GetAt(i, pElement) == E_SUCCESS) { accessibilityLabel += pElement->GetLabel(); + accessibilityLabel += space; } } }