QTfrontend/net/newnetclient.cpp
changeset 8765 688062f1db59
parent 8762 388d2bf73ff9
child 8891 bf67b4d7d7b4
equal deleted inserted replaced
8762:388d2bf73ff9 8765:688062f1db59
   848             .arg(param)
   848             .arg(param)
   849             .arg(value.join(QString(delimeter)))
   849             .arg(value.join(QString(delimeter)))
   850         );
   850         );
   851 }
   851 }
   852 
   852 
       
   853 void HWNewNet::chatLineToNetWithEcho(const QString& str)
       
   854 {
       
   855     if(str != "")
       
   856     {
       
   857         emit chatStringFromNet(HWProto::formatChatMsg(mynick, str));
       
   858         chatLineToNet(str);
       
   859     }
       
   860 }
       
   861 
   853 void HWNewNet::chatLineToNet(const QString& str)
   862 void HWNewNet::chatLineToNet(const QString& str)
   854 {
   863 {
   855     if(str != "")
   864     if(str != "")
   856     {
   865     {
   857         RawSendNet(QString("CHAT") + delimeter + str);
   866         RawSendNet(QString("CHAT") + delimeter + str);