hleem 18.08.2012 22:57 Gajim

чтобы выполнить команду надо ее в сокет отправить? или так теперь все пишут?

void QemuComunication::send( QString comand ){
//this→command.lock();
qDebug("QemuComunication::send: %s", comand.toAscii().data() );
if( socket→isWritable() && this→isRunning() ){
this→command.lock();
comand.append( '\n' );
const QByteArray array = comand.toAscii();
socket→write(array);
}

}

Do you really want to delete ?