Changeset 5957 for branches/qt-gui_qt4/src/contactlist
- Timestamp:
- 12/12/07 16:52:25 (12 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/qt-gui_qt4/src/contactlist/maincontactlistproxy.cpp
r5892 r5957 75 75 case ContactListModel::UserItem: 76 76 { 77 // Filter ignored users from the "All Users" group (system group 0)77 // Filter ignored users from all groups except "Ignore List" 78 78 if ((item.data(ContactListModel::ExtendedStatusRole).toUInt() & ContactListModel::IgnoreStatus) && 79 item.data(ContactListModel::GroupIdRole) == ContactListModel::SystemGroupOffset + 0)79 item.data(ContactListModel::GroupIdRole).toUInt() != ContactListModel::SystemGroupOffset + GROUP_IGNORE_LIST) 80 80 return false; 81 81
