mirror of https://github.com/buggins/dlangide.git
Fix access to private std.path.getcwd
This commit is contained in:
parent
da20313a1b
commit
d89ca3e739
|
@ -224,17 +224,17 @@ class CompilerLogWidget : LogWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
void resolveRelativePath(ref string path, int line) {
|
void resolveRelativePath(ref string path, int line) {
|
||||||
import std.path : getcwd, absolutePath;
|
import std.path : absolutePath;
|
||||||
Log.d("resolveRelativePath ", path, " current directory: ", getcwd);
|
Log.d("resolveRelativePath ", path);
|
||||||
string prjName = findProjectForLine(line);
|
string prjName = findProjectForLine(line);
|
||||||
if (prjName) {
|
if (prjName) {
|
||||||
Log.d("Error is in project ", prjName);
|
Log.d("Error is in project ", prjName);
|
||||||
}
|
}
|
||||||
string base = _baseDirectory;
|
string base = _baseDirectory;
|
||||||
if (!base)
|
if (!base)
|
||||||
base = getcwd;
|
path = absolutePath(path, base);
|
||||||
// TODO: select proper base
|
else
|
||||||
path = absolutePath(path, base);
|
path = absolutePath(path);
|
||||||
Log.d("converted to absolute path: ", path);
|
Log.d("converted to absolute path: ", path);
|
||||||
}
|
}
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue