Show
Ignore:
Timestamp:
12/12/07 16:52:25 (12 months ago)
Author:
eugene
Message:

Made ignored users be visible in Ignore List only.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/qt-gui_qt4/src/contactlist/maincontactlistproxy.cpp

    r5892 r5957  
    7575    case ContactListModel::UserItem: 
    7676    { 
    77       // Filter ignored users from the "All Users" group (system group 0) 
     77      // Filter ignored users from all groups except "Ignore List" 
    7878      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) 
    8080        return false; 
    8181