summaryrefslogtreecommitdiff
path: root/src/plugins/android/androidbuildapkstep.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-02-01 17:06:42 +0100
committerhjk <hjk@qt.io>2018-02-02 07:23:23 +0000
commit59d2505441be33b55c48e805bc85ee2866fba40f (patch)
treece2f5811ddc9165b1b270d0491d4adf0a9f12748 /src/plugins/android/androidbuildapkstep.cpp
parentd81580b7a3a2c8ab7cca1552717a3e1151a470eb (diff)
downloadqt-creator-59d2505441be33b55c48e805bc85ee2866fba40f.tar.gz
Remove two unneeded uses of ICore::instance()
The functions are static nowadays. Change-Id: Ic6f6cb9c58319f3b33d8201aefb630b9381b2af3 Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
Diffstat (limited to 'src/plugins/android/androidbuildapkstep.cpp')
-rw-r--r--src/plugins/android/androidbuildapkstep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androidbuildapkstep.cpp b/src/plugins/android/androidbuildapkstep.cpp
index d9c4e50f0e..4eb37d306d 100644
--- a/src/plugins/android/androidbuildapkstep.cpp
+++ b/src/plugins/android/androidbuildapkstep.cpp
@@ -164,7 +164,7 @@ bool AndroidBuildApkStep::init(QList<const BuildStep *> &earlierSteps)
void AndroidBuildApkStep::showInGraphicalShell()
{
- Core::FileUtils::showInGraphicalShell(Core::ICore::instance()->mainWindow(), m_apkPath);
+ Core::FileUtils::showInGraphicalShell(Core::ICore::mainWindow(), m_apkPath);
}
ProjectExplorer::BuildStepConfigWidget *AndroidBuildApkStep::createConfigWidget()