C++: Make Folder.getURL() consistent with Folder.getLocation()

This commit is contained in:
Ian Lynagh
2018-08-01 21:16:29 +01:00
parent e1f3637b66
commit 0f350780bb

View File

@@ -192,7 +192,7 @@ class Folder extends Container, @folder {
* Gets the URL of this folder.
*/
deprecated override string getURL() {
result = "folder://" + getAbsolutePath()
result = "file://" + this.getAbsolutePath() + ":0:0:0:0"
}
/**