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

More uin removed from the plugins.

Location:
trunk/qt4-gui/src/dialogs
Files:
2 modified

Legend:

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

    r6351 r6406  
    733733        QString n = UserCodec::codecForCChatUser(u)->toUnicode(u->Name()); 
    734734 
    735         if (n.isEmpty()) n.setNum(u->Uin()); 
     735        if (n.isEmpty()) 
     736          n = u->Id(); 
    736737        chatClose(u); 
    737738        InformUser(this, tr("%1 closed connection.").arg(n)); 
  • trunk/qt4-gui/src/dialogs/reqauthdlg.cpp

    r6133 r6406  
    102102    //TODO add a drop down list for protocol 
    103103    QTextCodec* codec = UserCodec::codecForProtoUser(id, LICQ_PPID); 
    104     gLicqDaemon->icqRequestAuth(id.toULong(), 
     104    gLicqDaemon->icqRequestAuth(id.toLatin1().data(), 
    105105      codec->fromUnicode(mleRequest->toPlainText())); 
    106106    close();