aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2020-05-27 16:17:59 +0200
committerEike Ziller <eike.ziller@qt.io>2020-05-28 06:48:21 +0000
commit2d5a4464bec9662bbeb9e87c2c3b94f7ef599cf4 (patch)
tree764019ada40916775f61622515fdb3da3770de9c
parent98d993f387680294e585f81742da36866307d26e (diff)
Adapt to upstream changes
Change-Id: Ic6f34677f8048e8d3b3a88e5e6fd6dde4bd4d027 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--plugins/haskell/haskellbuildconfiguration.cpp2
-rw-r--r--plugins/haskell/optionspage.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/haskell/haskellbuildconfiguration.cpp b/plugins/haskell/haskellbuildconfiguration.cpp
index a587ef1..e4e10b1 100644
--- a/plugins/haskell/haskellbuildconfiguration.cpp
+++ b/plugins/haskell/haskellbuildconfiguration.cpp
@@ -125,7 +125,7 @@ HaskellBuildConfigurationWidget::HaskellBuildConfigurationWidget(HaskellBuildCon
&Utils::PathChooser::pathChanged,
m_buildConfiguration,
[this, buildDirectoryInput](const QString &) {
- m_buildConfiguration->setBuildDirectory(buildDirectoryInput->rawFileName());
+ m_buildConfiguration->setBuildDirectory(buildDirectoryInput->rawFilePath());
});
}
diff --git a/plugins/haskell/optionspage.cpp b/plugins/haskell/optionspage.cpp
index 04cab79..cba0517 100644
--- a/plugins/haskell/optionspage.cpp
+++ b/plugins/haskell/optionspage.cpp
@@ -73,7 +73,7 @@ void OptionsPage::apply()
{
if (!m_widget)
return;
- HaskellManager::setStackExecutable(m_stackPath->rawFileName());
+ HaskellManager::setStackExecutable(m_stackPath->rawFilePath());
}
void OptionsPage::finish()