Changeset 6190 for trunk/qt4-gui/src/contactlist
- Timestamp:
- 05/10/08 23:14:58 (7 months ago)
- Location:
- trunk/qt4-gui/src/contactlist
- Files:
-
- 2 modified
-
contactlist.cpp (modified) (10 diffs)
-
contactlist.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/contactlist/contactlist.cpp
r6189 r6190 50 50 SLOT(groupDataChanged(ContactGroup*))); 51 51 connect(mySystemGroups[i], SIGNAL(barDataChanged(ContactBar*, int)), 52 SLOT( slot_barDataChanged(ContactBar*, int)));52 SLOT(barDataChanged(ContactBar*, int))); 53 53 } 54 54 … … 70 70 } 71 71 72 void ContactListModel:: slot_updatedList(CICQSignal* sig)72 void ContactListModel::listUpdated(CICQSignal* sig) 73 73 { 74 74 switch(sig->SubSignal()) … … 83 83 if (u == NULL) 84 84 { 85 gLog.Warn("%sContactList:: slot_updatedList(): Invalid user received: %lu, %s\n", L_ERRORxSTR, sig->PPID(), sig->Id());85 gLog.Warn("%sContactList::listUpdated(): Invalid user received: %lu, %s\n", L_ERRORxSTR, sig->PPID(), sig->Id()); 86 86 break; 87 87 } … … 96 96 } 97 97 98 void ContactListModel:: slot_updatedUser(CICQSignal* sig)98 void ContactListModel::userUpdated(CICQSignal* sig) 99 99 { 100 100 // Skip events for owners … … 105 105 if (user == NULL) 106 106 { 107 gLog.Warn("%sContactList:: slot_updatedUser(): Invalid user received: %lu, %s\n", L_ERRORxSTR, sig->PPID(), sig->Id());107 gLog.Warn("%sContactList::userUpdated(): Invalid user received: %lu, %s\n", L_ERRORxSTR, sig->PPID(), sig->Id()); 108 108 return; 109 109 } … … 156 156 } 157 157 158 void ContactListModel:: slot_userDataChanged(const ContactUserData* user)158 void ContactListModel::userDataChanged(const ContactUserData* user) 159 159 { 160 160 if (myBlockUpdates) … … 181 181 } 182 182 183 void ContactListModel:: slot_barDataChanged(ContactBar* bar, int row)183 void ContactListModel::barDataChanged(ContactBar* bar, int row) 184 184 { 185 185 if (myBlockUpdates) … … 206 206 SLOT(groupDataChanged(ContactGroup*))); 207 207 connect(newGroup, SIGNAL(barDataChanged(ContactBar*, int)), 208 SLOT( slot_barDataChanged(ContactBar*, int)));208 SLOT(barDataChanged(ContactBar*, int))); 209 209 myUserGroups.append(newGroup); 210 210 … … 215 215 SLOT(groupDataChanged(ContactGroup*))); 216 216 connect(newGroup, SIGNAL(barDataChanged(ContactBar*, int)), 217 SLOT( slot_barDataChanged(ContactBar*, int)));217 SLOT(barDataChanged(ContactBar*, int))); 218 218 myUserGroups.append(newGroup); 219 219 } … … 248 248 ContactUserData* newUser = new ContactUserData(licqUser, this); 249 249 connect(newUser, SIGNAL(dataChanged(const ContactUserData*)), 250 SLOT( slot_userDataChanged(const ContactUserData*)));250 SLOT(userDataChanged(const ContactUserData*))); 251 251 connect(newUser, SIGNAL(updateUserGroups(ContactUserData*, ICQUser*)), 252 252 SLOT(updateUserGroups(ContactUserData*, ICQUser*))); -
trunk/qt4-gui/src/contactlist/contactlist.h
r6189 r6190 330 330 * @param sig Signal data from the daemon with information on what has changed 331 331 */ 332 void slot_updatedList(CICQSignal* sig);332 void listUpdated(CICQSignal* sig); 333 333 334 334 /** … … 337 337 * @param sig Signal data from the daemon with information on what has changed 338 338 */ 339 void slot_updatedUser(CICQSignal* sig);339 void userUpdated(CICQSignal* sig); 340 340 341 341 /** … … 356 356 * @param user The user data object that has changed 357 357 */ 358 void slot_userDataChanged(const ContactUserData* user);358 void userDataChanged(const ContactUserData* user); 359 359 360 360 /** … … 373 373 * @param row The row of the bar in it's group 374 374 */ 375 void slot_barDataChanged(ContactBar* bar, int row);375 void barDataChanged(ContactBar* bar, int row); 376 376 377 377 /**
