diff options
author | Robert Loehning <robert.loehning@nokia.com> | 2012-03-05 22:30:59 +0100 |
---|---|---|
committer | Robert Löhning <robert.loehning@nokia.com> | 2012-03-06 12:46:52 +0100 |
commit | b41171c8473e7202f67aaa0f7ace1bf40e02919e (patch) | |
tree | 47de72e1d07c7bd86f7f576417ae6c32671c12a5 /src/plugins/debugger/lldb | |
parent | 9f05e6495dfeda3b78ba2da356832367194633bb (diff) | |
download | qt-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.cpp | 4 | ||||
-rw-r--r-- | src/plugins/debugger/lldb/lldbenginehost.cpp | 16 |
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(); |