QTfrontend/newnetclient.cpp
changeset 465 07eca0a2546c
parent 461 105af110b0e6
child 468 8403d6884707
equal deleted inserted replaced
464:7f48321fc38a 465:07eca0a2546c
   185   }
   185   }
   186 
   186 
   187   if(lst[0]=="JOINED") {
   187   if(lst[0]=="JOINED") {
   188     if(lst.size()<2) return;
   188     if(lst.size()<2) return;
   189     qDebug() << "JOINED" << lst[1];
   189     qDebug() << "JOINED" << lst[1];
       
   190     emit nickAdded(lst[1]);
   190     return;
   191     return;
   191   }
   192   }
   192 
   193 
   193   if(lst[0]=="LEFT") {
   194   if(lst[0]=="LEFT") {
   194     if(lst.size()<2) return;
   195     if(lst.size()<2) return;
   195     qDebug() << "LEFT" << lst[1];
   196     qDebug() << "LEFT" << lst[1];
       
   197     emit nickRemoved(lst[1]);
   196     return;
   198     return;
   197   }
   199   }
   198 
   200 
   199   if (lst[0] == "CONFIGASKED") {
   201   if (lst[0] == "CONFIGASKED") {
   200     isChief=true;
   202     isChief=true;