Follow project coding style. Issue #2192.

This commit is contained in:
sledgehammer999 2015-01-06 01:48:24 +02:00
commit 8966bcacea
2 changed files with 45 additions and 45 deletions

View file

@ -39,11 +39,11 @@
#include "iconprovider.h"
#include "loglistwidget.h"
ExecutionLog::ExecutionLog(QWidget *parent) :
QWidget(parent),
ui(new Ui::ExecutionLog),
m_msgList(new LogListWidget(MAX_LOG_MESSAGES)),
m_peerList(new LogListWidget(MAX_LOG_MESSAGES))
ExecutionLog::ExecutionLog(QWidget *parent)
: QWidget(parent)
, ui(new Ui::ExecutionLog)
, m_msgList(new LogListWidget(MAX_LOG_MESSAGES))
, m_peerList(new LogListWidget(MAX_LOG_MESSAGES))
{
ui->setupUi(this);
@ -57,7 +57,7 @@ ExecutionLog::ExecutionLog(QWidget *parent) :
addLogMessage(msg);
foreach (const Log::Peer& peer, logger->getPeers())
addPeerMessage(peer);
connect(logger, SIGNAL(newLogMessage(const Log::Msg &)), SLOT(addLogMessage(const Logg:Msg &)));
connect(logger, SIGNAL(newLogMessage(const Log::Msg &)), SLOT(addLogMessage(const Log::Msg &)));
connect(logger, SIGNAL(newLogPeer(const Log::Peer &)), SLOT(addPeerMessage(const Log::Peer &)));
}