Page MenuHomePhabricator (Chris)

No OneTemporary

Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None
diff --git a/singleapplication.cpp b/singleapplication.cpp
index 5a4d37a..083ea30 100644
--- a/singleapplication.cpp
+++ b/singleapplication.cpp
@@ -1,52 +1,52 @@
#include "singleapplication.h"
#include <cstdlib>
/**
* @brief Constructor. Checks and fires up LocalServer or closes the
program
* if another instance already exists
* @param argc
* @param argv
*/
SingleApplication::SingleApplication(int argc, char *argv[])
: QApplication(argc, argv)
{
QString serverName = QApplication::organizationName() +
QApplication::applicationName();
- serverName.replace(QRegExp("\\s"), "");
+ serverName.replace(QRegExp("[^\\w\\-. ]"), "");
// Attempt to connect to the LocalServer
socket = new QLocalSocket();
socket->connectToServer(serverName);
if(socket->waitForConnected(1000)){
socket->close();
::exit(EXIT_SUCCESS); // Terminate the program using STDLib's
exit function
} else {
// If the connection is insuccessful, this is the main process
// So we create a Local Server
server = new QLocalServer();
server->removeServer(serverName);
server->listen(serverName);
QObject::connect(server, SIGNAL(newConnection()), this,
SLOT(slotConnectionEstablished()));
}
}
/**
* @brief Destructor
*/
SingleApplication::~SingleApplication()
{
server->close();
}
/**
* @brief Executed when the showUp command is sent to LocalServer
*/
void SingleApplication::slotConnectionEstablished()
{
server->nextPendingConnection();
emit showUp();
}

File Metadata

Mime Type
text/x-diff
Expires
Thu, Jun 18, 12:13 AM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
70557
Default Alt Text
(1 KB)

Event Timeline