summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/33013-Q_2.cpp
blob: 7d0bb88ae903ecdf30ef8d56ce0ce7fac5ae5d12 (plain)
1
2
3
4
5
6
7
8
9
10
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()));
}