summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/lldb
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@nokia.com>2012-03-05 22:30:59 +0100
committerRobert Löhning <robert.loehning@nokia.com>2012-03-06 12:46:52 +0100
commitb41171c8473e7202f67aaa0f7ace1bf40e02919e (patch)
tree47de72e1d07c7bd86f7f576417ae6c32671c12a5 /src/plugins/debugger/lldb
parent9f05e6495dfeda3b78ba2da356832367194633bb (diff)
downloadqt-creator-b41171c8473e7202f67aaa0f7ace1bf40e02919e.tar.gz
Normalized connect()s
Change-Id: Id353ab140a46e06ffc3abf667ab3b234e749e17c Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/debugger/lldb')
-rw-r--r--src/plugins/debugger/lldb/guest/lldbengineguest.cpp4
-rw-r--r--src/plugins/debugger/lldb/lldbenginehost.cpp16
2 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/debugger/lldb/guest/lldbengineguest.cpp b/src/plugins/debugger/lldb/guest/lldbengineguest.cpp
index 2651c98eb0..1884512369 100644
--- a/src/plugins/debugger/lldb/guest/lldbengineguest.cpp
+++ b/src/plugins/debugger/lldb/guest/lldbengineguest.cpp
@@ -95,8 +95,8 @@ LldbEngineGuest::LldbEngineGuest()
qRegisterMetaType<lldb::SBEvent *>("lldb::SBEvent *");
m_worker->moveToThread(&m_wThread);
- connect(m_worker, SIGNAL(lldbEvent(lldb::SBEvent *)), this,
- SLOT(lldbEvent(lldb::SBEvent *)), Qt::BlockingQueuedConnection);
+ connect(m_worker, SIGNAL(lldbEvent(lldb::SBEvent*)), this,
+ SLOT(lldbEvent(lldb::SBEvent*)), Qt::BlockingQueuedConnection);
m_wThread.start();
setObjectName(QLatin1String("LLDBEngineGuest"));
}
diff --git a/src/plugins/debugger/lldb/lldbenginehost.cpp b/src/plugins/debugger/lldb/lldbenginehost.cpp
index a80854111f..17d4b9be51 100644
--- a/src/plugins/debugger/lldb/lldbenginehost.cpp
+++ b/src/plugins/debugger/lldb/lldbenginehost.cpp
@@ -70,10 +70,10 @@ SshIODevice::SshIODevice(Utils::SshRemoteProcessRunner *r)
{
setOpenMode(QIODevice::ReadWrite | QIODevice::Unbuffered);
connect (runner, SIGNAL(processStarted()), this, SLOT(processStarted()));
- connect(runner, SIGNAL(processOutputAvailable(const QByteArray &)),
- this, SLOT(outputAvailable(const QByteArray &)));
- connect(runner, SIGNAL(processErrorOutputAvailable(const QByteArray &)),
- this, SLOT(errorOutputAvailable(const QByteArray &)));
+ connect(runner, SIGNAL(processOutputAvailable(QByteArray)),
+ this, SLOT(outputAvailable(QByteArray)));
+ connect(runner, SIGNAL(processErrorOutputAvailable(QByteArray)),
+ this, SLOT(errorOutputAvailable(QByteArray)));
}
SshIODevice::~SshIODevice()
@@ -158,8 +158,8 @@ LldbEngineHost::LldbEngineHost(const DebuggerStartParameters &startParameters)
} else {
m_guestProcess = new QProcess(this);
- connect(m_guestProcess, SIGNAL(finished(int, QProcess::ExitStatus)),
- this, SLOT(finished(int, QProcess::ExitStatus)));
+ connect(m_guestProcess, SIGNAL(finished(int,QProcess::ExitStatus)),
+ this, SLOT(finished(int,QProcess::ExitStatus)));
connect(m_guestProcess, SIGNAL(readyReadStandardError()), this,
SLOT(stderrReady()));
@@ -189,8 +189,8 @@ LldbEngineHost::~LldbEngineHost()
showMessage(QLatin1String("tear down qtcreator-lldb"));
if (m_guestProcess) {
- disconnect(m_guestProcess, SIGNAL(finished(int, QProcess::ExitStatus)),
- this, SLOT(finished (int, QProcess::ExitStatus)));
+ disconnect(m_guestProcess, SIGNAL(finished(int,QProcess::ExitStatus)),
+ this, SLOT(finished(int,QProcess::ExitStatus)));
m_guestProcess->terminate();