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

« back to all changes in this revision

Viewing changes to src/qnx/blackberrydeployconfigurationfactory.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:
32
32
#include "blackberrydeployconfigurationfactory.h"
33
33
 
34
34
#include "qnxconstants.h"
35
 
#include "blackberrycheckdevmodestep.h"
 
35
#include "blackberrycheckdevicestatusstep.h"
36
36
#include "blackberrydeployconfiguration.h"
37
37
#include "blackberrycreatepackagestep.h"
38
38
#include "blackberrydeploystep.h"
93
93
        return 0;
94
94
 
95
95
    BlackBerryDeployConfiguration *dc = new BlackBerryDeployConfiguration(parent);
96
 
    dc->stepList()->insertStep(0, new BlackBerryCheckDevModeStep(dc->stepList()));
 
96
    dc->stepList()->insertStep(0, new BlackBerryCheckDeviceStatusStep(dc->stepList()));
97
97
    dc->stepList()->insertStep(1, new BlackBerryCreatePackageStep(dc->stepList()));
98
98
    dc->stepList()->insertStep(2, new BlackBerryDeployStep(dc->stepList()));
99
99
    return dc;