summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cpp/Q_2.cpp
blob: ee6239f97ed0e9c2471678e3028b10c45ef34391 (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()));
}