Show
Ignore:
Timestamp:
07/03/08 22:20:05 (5 months ago)
Author:
flynd
Message:

More uin removed from the plugins.

Files:
1 modified

Legend:

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

    r6294 r6406  
    434434        if (chatDlg->StartAsClient(c->Port())) 
    435435          gLicqDaemon->icqChatRequestAccept( 
    436               strtoul(myUsers.front().c_str(), NULL, 10), 
     436              myUsers.front().c_str(), 
    437437              0, c->Clients(), c->Sequence(), 
    438438              c->MessageID(), c->IsDirect()); 
     
    443443        if (chatDlg->StartAsServer()) 
    444444          gLicqDaemon->icqChatRequestAccept( 
    445               strtoul(myUsers.front().c_str(), NULL, 10), 
     445              myUsers.front().c_str(), 
    446446              chatDlg->LocalPort(), c->Clients(), c->Sequence(), 
    447447              c->MessageID(), c->IsDirect()); 
     
    504504        // FIXME: must have been done in CICQDaemon 
    505505        gLicqDaemon->icqChatRequestRefuse( 
    506             strtoul(myUsers.front().c_str(), NULL, 10), 
     506            myUsers.front().c_str(), 
    507507            myCodec->fromUnicode(r->RefuseMessage()), myCurrentEvent->Sequence(), 
    508508            c->MessageID(), c->IsDirect()); 
     
    562562        if (chatDlg->StartAsClient(c->Port())) 
    563563          gLicqDaemon->icqChatRequestAccept( 
    564               strtoul(myUsers.front().c_str(), NULL, 10), 
     564              myUsers.front().c_str(), 
    565565              0, c->Clients(), c->Sequence(), c->MessageID(), c->IsDirect()); 
    566566      } 
     
    572572        if (j->exec() && (chatDlg = j->JoinedChat()) != NULL) 
    573573          gLicqDaemon->icqChatRequestAccept( 
    574               strtoul(myUsers.front().c_str(), NULL, 10), 
     574              myUsers.front().c_str(), 
    575575              chatDlg->LocalPort(), c->Clients(), c->Sequence(), c->MessageID(), c->IsDirect()); 
    576576        delete j;