Actions
Bug #2354
closedWComboBox item grouping with LevelRole broken for unicode group names
Start date:
10/23/2013
Due date:
% Done:
0%
Estimated time:
Description
WComboBox item grouping with LevelRole broken for Unicode group names.
If an identical unicode group name is assigned for a number of items, a new group header is added for each item.
Problem seems to be caused by this line in WComboBox.cpp :
@ if (!currentGroup ||
currentGroup->getProperty(PropertyLabel) != groupname)@
When changed like :
@ if (!currentGroup ||
currentGroup->getProperty(PropertyLabel) != groupname.toUTF8())@
problem seems to be solved.
Updated by Koen Deforche about 11 years ago
- Status changed from New to InProgress
- Assignee set to Korneel Dumon
- Target version changed from 3.3.1 to 3.3.2
Updated by Korneel Dumon about 11 years ago
- Status changed from InProgress to Resolved
Updated by Koen Deforche almost 11 years ago
- Status changed from Resolved to Closed
Actions