aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2017-12-20 13:52:35 +0100
committerEike Ziller <eike.ziller@qt.io>2017-12-20 14:11:09 +0000
commit1d8b12047ae4a175303b827e6d682189edb2391c (patch)
tree7e8b5318c6ad18348566845d9012e62fe46d8615
parenta1fd1a7abb54a3d4fbe88268470dc9fdc13668b0 (diff)
Adapt to upstream run configuration factory change
Changed to IDs in qt-creator/4a66cae8545cd58cf9d3006a2bad91845cffa14b Change-Id: Ie6eb2d53df8735f7fa78baa3a9f885192593f950 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--plugins/haskell/haskellrunconfiguration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/haskell/haskellrunconfiguration.cpp b/plugins/haskell/haskellrunconfiguration.cpp
index 7b47ff6..87514e3 100644
--- a/plugins/haskell/haskellrunconfiguration.cpp
+++ b/plugins/haskell/haskellrunconfiguration.cpp
@@ -47,7 +47,7 @@ namespace Internal {
HaskellRunConfigurationFactory::HaskellRunConfigurationFactory()
{
registerRunConfiguration<HaskellRunConfiguration>(Constants::C_HASKELL_RUNCONFIG_ID_PREFIX);
- setSupportedProjectType<HaskellProject>();
+ addSupportedProjectType(Constants::C_HASKELL_PROJECT_ID);
setSupportedTargetDeviceTypes({ProjectExplorer::Constants::DESKTOP_DEVICE_TYPE});
}