You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
307 B

bool AkonadiServer::quit()
{
QTimer::singleShot(0, this, SLOT(doQuit()));
}
void AkonadiServer::incomingConnection(quintptr socketDescriptor)
{
QPointer<ConnectionThread> thread = new ConnectionThread(socketDescriptor, this);
connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
}