Show
Ignore:
Timestamp:
06/15/08 03:06:17 (6 months ago)
Author:
eugene
Message:

Removed the signalling which is implemented elsewhere. This fixes the crash.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt4-gui/src/contactlist/contactlist.cpp

    r6311 r6312  
    402402void ContactListModel::clear() 
    403403{ 
    404   // Clear all users and user groups. System groups and their bars are never removed. 
    405  
     404  // Clear all users and user groups. 
     405  // System groups and their bars are never removed. 
    406406  while (!myUsers.isEmpty()) 
    407407    delete myUsers.takeFirst(); 
    408408 
    409   beginRemoveRows(QModelIndex(), 0, myUserGroups.size()-1); 
    410409  while (!myUserGroups.isEmpty()) 
    411410    delete myUserGroups.takeFirst(); 
    412   endRemoveRows(); 
    413411} 
    414412