1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 22:23:51 +00:00

[Feature #881] Code Formatting

Code formatted to the OpenMW policy.
This commit is contained in:
Marc Bouvier 2013-09-03 05:22:48 -05:00
parent 563bd0b430
commit 0ae2bb2fae
2 changed files with 11 additions and 11 deletions

View file

@ -10,7 +10,7 @@
CS::Editor::Editor() : mViewManager (mDocumentManager)
{
ipcServerName = "IPCServer";
mIpcServerName = "IPCServer";
connect (&mViewManager, SIGNAL (newDocumentRequest ()), this, SLOT (createDocument ()));
connect (&mViewManager, SIGNAL (loadDocumentRequest ()), this, SLOT (loadDocument ()));
@ -128,23 +128,23 @@ void CS::Editor::showStartup()
bool CS::Editor::makeIPCServer()
{
server = new QLocalServer(this);
mServer = new QLocalServer(this);
if(server->listen(ipcServerName))
if(mServer->listen(mIpcServerName))
{
connect(server, SIGNAL(newConnection()), this, SLOT(showStartup()));
connect(mServer, SIGNAL(newConnection()), this, SLOT(showStartup()));
return true;
}
server->close();
mServer->close();
return false;
}
void CS::Editor::connectToIPCServer()
{
clientToServerSocket = new QLocalSocket(this);
clientToServerSocket->connectToServer(ipcServerName);
clientToServerSocket->close();
mClientSocket = new QLocalSocket(this);
mClientSocket->connectToServer(mIpcServerName);
mClientSocket->close();
}
int CS::Editor::run()

View file

@ -57,9 +57,9 @@ namespace CS
private:
QString ipcServerName;
QLocalServer *server;
QLocalSocket *clientToServerSocket;
QString mIpcServerName;
QLocalServer *mServer;
QLocalSocket *mClientSocket;
};
}