aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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()