Changeset 3310 for trunk/jons-gtk2-gui
- Timestamp:
- 02/26/03 10:23:39 (6 years ago)
- Files:
-
- 1 modified
-
trunk/jons-gtk2-gui/src/pipe.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jons-gtk2-gui/src/pipe.cpp
r3297 r3310 57 57 if (sig->SubSignal() == USER_EVENTS) { 58 58 ICQUser *u = gUserManager.FetchUser(sig->Uin(), LOCK_R); 59 if (u == 0) {59 if (u == NULL) { 60 60 gUserManager.DropUser(u); 61 61 return; … … 64 64 gUserManager.DropUser(u); 65 65 66 if (ue == 0) {66 if (ue == NULL) { 67 67 gUserManager.DropUser(u); 68 68 return; … … 154 154 else 155 155 user_function(event); 156 break; 156 157 157 158 case ICQ_CMDxSND_LOGON: 158 159 case ICQ_CMDxSND_USERxLIST: 159 160 case ICQ_CMDxSND_REGISTERxUSER: 160 if (event->Command() != ICQ_CMDxSND_REGISTERxUSER)161 if (event->Command() != ICQ_CMDxSND_REGISTERxUSER) 161 162 contact_list_refresh(); 162 163 owner_function(event);
