aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/haskell/haskellmanager.h
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2019-10-24 12:03:52 +0200
committerEike Ziller <eike.ziller@qt.io>2019-10-24 12:31:14 +0000
commitd59eb32ce6271f8f7069b4d526ba767ae59c8aed (patch)
tree5a36f4ba921cac301751d05d91d7b0eefaa66340 /plugins/haskell/haskellmanager.h
parent126fe0fa0b58e3d70ca1109336f784d5659c846f (diff)
Remove support for ghc-mod
ghc-mod is no longer active and doesn't even compile against newer GHC versions. Use haskell-ide-engine and Qt Creator's language protocol client instead. Change-Id: I5776ec8375c732b8066d09e629148ae222e981c5 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'plugins/haskell/haskellmanager.h')
-rw-r--r--plugins/haskell/haskellmanager.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/plugins/haskell/haskellmanager.h b/plugins/haskell/haskellmanager.h
index b4a2e35..63013c9 100644
--- a/plugins/haskell/haskellmanager.h
+++ b/plugins/haskell/haskellmanager.h
@@ -36,8 +36,6 @@ QT_END_NAMESPACE
namespace Haskell {
namespace Internal {
-class AsyncGhcMod;
-
class HaskellManager : public QObject
{
Q_OBJECT
@@ -46,14 +44,11 @@ public:
static HaskellManager *instance();
static Utils::FilePath findProjectDirectory(const Utils::FilePath &filePath);
- static std::shared_ptr<AsyncGhcMod> ghcModForFile(const Utils::FilePath &filePath);
static Utils::FilePath stackExecutable();
static void setStackExecutable(const Utils::FilePath &filePath);
static void readSettings(QSettings *settings);
static void writeSettings(QSettings *settings);
- static QString trLookingUp(const QString &name);
-
signals:
void stackExecutableChanged(const Utils::FilePath &filePath);
};