~ubuntu-sdk-team/qtcreator-plugin-remotelinux/trunk

« back to all changes in this revision

Viewing changes to src/qnx/blackberryruncontrol.cpp

  • Committer: CI bot
  • Author(s): Benjamin Zeller
  • Date: 2014-06-16 10:28:43 UTC
  • mfrom: (4.2.4 remotelinux)
  • Revision ID: ps-jenkins@lists.canonical.com-20140616102843-8juvmjvzwlzsboyw
Migrating to Qt5.3 and QtC 3.1 

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
BlackBerryRunControl::BlackBerryRunControl(BlackBerryRunConfiguration *runConfiguration)
44
44
    : ProjectExplorer::RunControl(runConfiguration, ProjectExplorer::NormalRunMode)
45
45
{
46
 
    m_runner = new BlackBerryApplicationRunner(false, runConfiguration, this);
 
46
    m_runner = new BlackBerryApplicationRunner(BlackBerryApplicationRunner::LaunchFlags(), runConfiguration, this);
47
47
 
48
48
    connect(m_runner, SIGNAL(started()), this, SIGNAL(started()));
49
49
    connect(m_runner, SIGNAL(finished()), this, SIGNAL(finished()));