From 7c53f7459f50a996e55e546456a38ff9e530e6e2 Mon Sep 17 00:00:00 2001 From: Sreedeep Moulik Date: Thu, 4 Jul 2013 14:47:23 +0530 Subject: [PATCH] TableView Accessibility - introducing space between element's labels - TDIS-6478 Change-Id: I6eb58cd6d0030f7fbe397b17efe76d3b82a4d3c5 Signed-off-by: Sreedeep Moulik --- src/ui/controls/FUiCtrl_TableViewItem.cpp | 2 ++ 1 file changed, 2 insertions(+) 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; } } } -- 2.7.4