~zeller-benjamin/qtcreator-plugin-ubuntu/displayvar

« back to all changes in this revision

Viewing changes to src/ubuntu/device/remote/ubunturemoteruncontrol.cpp

  • Committer: Benjamin Zeller
  • Date: 2016-07-20 14:56:52 UTC
  • Revision ID: benjamin.zeller@canonical.com-20160720145652-43u3qokds5otu7l2
- Make QtC-P-U actually compile against Qt 4.1 beta

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#include "ubuntudevice.h"
35
35
#include "ubuntuwaitfordevicedialog.h"
36
36
 
37
 
#include <remotelinux/abstractremotelinuxrunconfiguration.h>
38
37
#include <projectexplorer/devicesupport/deviceapplicationrunner.h>
39
38
#include <projectexplorer/kitinformation.h>
40
39
#include <projectexplorer/target.h>
41
40
#include <utils/environment.h>
42
41
#include <coreplugin/icore.h>
 
42
#include <coreplugin/coreicons.h>
43
43
 
44
44
#include <QString>
45
45
#include <QIcon>
73
73
    d->environment = d->runConfig->environment();
74
74
    d->clickPackage = d->runConfig->clickPackage();
75
75
 
76
 
    setIcon(QLatin1String(ProjectExplorer::Constants::ICON_RUN_SMALL));
 
76
    setIcon(Core::Icons::RUN_SMALL);
77
77
}
78
78
 
79
79
UbuntuRemoteRunControl::~UbuntuRemoteRunControl()