aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2021-02-08 12:39:34 +0100
committerEike Ziller <eike.ziller@qt.io>2021-02-08 12:43:31 +0000
commit7a9e2bd192a0034e1911f0d622ff3b8f5ab8dd6c (patch)
treebc301e16d3e9ca2ae14c75b5afb312156aff7955 /plugins
parent8bac42bd2fdf0b94a1fb460e179b34b903a92149 (diff)
Adapt to upstream MessageManager change
Change-Id: If16371bb203c5080fc52155e5d158ca96e5ef847 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/haskell/haskellmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/haskell/haskellmanager.cpp b/plugins/haskell/haskellmanager.cpp
index 5c9ab1d..5b719ba 100644
--- a/plugins/haskell/haskellmanager.cpp
+++ b/plugins/haskell/haskellmanager.cpp
@@ -109,7 +109,7 @@ void HaskellManager::openGhci(const FilePath &haskellFile)
p->setCommand({stackExecutable(), args});
p->setWorkingDirectory(haskellFile.toFileInfo().path());
connect(p, &ConsoleProcess::processError, p, [p](const QString &errorString) {
- Core::MessageManager::write(tr("Failed to run GHCi: \"%1\".").arg(errorString));
+ Core::MessageManager::writeDisrupting(tr("Failed to run GHCi: \"%1\".").arg(errorString));
p->deleteLater();
});
connect(p, &ConsoleProcess::stubStopped, p, &QObject::deleteLater);