This commit is contained in:
Luis Ángel San Martín
2014-08-12 16:20:52 +02:00
parent f717765a75
commit ef49d93348
82 changed files with 3758 additions and 753 deletions

View File

@ -64,7 +64,12 @@ bool YACReaderLocalServer::isRunning()
socket.connectToServer(YACREADERLIBRARY_GUID);
if (socket.waitForConnected(500))
return true; // Server is running (another instance of YACReaderLibrary has been launched)
return false;
return false;
}
void YACReaderLocalServer::close()
{
localServer->close();
}