forked from qt-creator/qt-creator
No need to have a function if we can call connect inside the class ctor.
This commit is contained in:
@@ -107,6 +107,11 @@ void MaemoRunConfiguration::init()
|
||||
qemu = new QProcess(this);
|
||||
connect(qemu, SIGNAL(finished(int, QProcess::ExitStatus)), this,
|
||||
SLOT(qemuProcessFinished()));
|
||||
|
||||
connect(&MaemoManager::instance(), SIGNAL(startStopQemu()), this,
|
||||
SLOT(startStopQemu()));
|
||||
connect(this, SIGNAL(qemuProcessStatus(bool)), &MaemoManager::instance(),
|
||||
SLOT(updateQemuSimulatorStarter(bool)));
|
||||
}
|
||||
|
||||
MaemoRunConfiguration::~MaemoRunConfiguration()
|
||||
|
||||
Reference in New Issue
Block a user