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/libs/utils/consoleprocess_unix.cpp | |
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/libs/utils/consoleprocess_unix.cpp')
-rw-r--r-- | src/libs/utils/consoleprocess_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/utils/consoleprocess_unix.cpp b/src/libs/utils/consoleprocess_unix.cpp index 26b12aaada..8ed83300a3 100644 --- a/src/libs/utils/consoleprocess_unix.cpp +++ b/src/libs/utils/consoleprocess_unix.cpp @@ -62,7 +62,7 @@ ConsoleProcess::ConsoleProcess(QObject *parent) : connect(&d->m_stubServer, SIGNAL(newConnection()), SLOT(stubConnectionAvailable())); d->m_process.setProcessChannelMode(QProcess::ForwardedChannels); - connect(&d->m_process, SIGNAL(finished(int, QProcess::ExitStatus)), + connect(&d->m_process, SIGNAL(finished(int,QProcess::ExitStatus)), SLOT(stubExited())); } |