Is there a way in QT to terminate a'la TerminateProcess the current process?
QProcess::kill() seem to be only applicable to other, external processes.
Is there a way in QT to terminate a'la TerminateProcess the current process?
QProcess::kill() seem to be only applicable to other, external processes.
Just call TerminateProcess directly, or if you want something platform independant: exit()