+
+void ProxGuiQT::_StartProxmarkThread(void) {
+ if (!proxmarkThread)
+ return;
+
+ // if thread finished delete self and delete application
+ QObject::connect(proxmarkThread, SIGNAL(finished()), proxmarkThread, SLOT(deleteLater()));
+ QObject::connect(proxmarkThread, SIGNAL(finished()), this, SLOT(_Exit()));
+ // start proxmark thread
+ proxmarkThread->start();
+}
+