From d89ca3e739ee419824720dd5f79b180e418c7000 Mon Sep 17 00:00:00 2001 From: Carsten Schlote Date: Wed, 19 Sep 2018 15:57:46 +0200 Subject: [PATCH] Fix access to private std.path.getcwd --- src/dlangide/ui/outputpanel.d | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/dlangide/ui/outputpanel.d b/src/dlangide/ui/outputpanel.d index feb143b..e8bbcd7 100644 --- a/src/dlangide/ui/outputpanel.d +++ b/src/dlangide/ui/outputpanel.d @@ -224,17 +224,17 @@ class CompilerLogWidget : LogWidget { } void resolveRelativePath(ref string path, int line) { - import std.path : getcwd, absolutePath; - Log.d("resolveRelativePath ", path, " current directory: ", getcwd); + import std.path : absolutePath; + Log.d("resolveRelativePath ", path); string prjName = findProjectForLine(line); if (prjName) { Log.d("Error is in project ", prjName); } string base = _baseDirectory; if (!base) - base = getcwd; - // TODO: select proper base - path = absolutePath(path, base); + path = absolutePath(path, base); + else + path = absolutePath(path); Log.d("converted to absolute path: ", path); } ///