From: Rejean Loyer Date: Fri, 16 Sep 2011 16:20:32 +0000 (-0400) Subject: libede: fix to FileSystemNode::GetPath for nodes that specify a path X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?p=ede;a=commitdiff_plain;h=01dca8b87f3635bd0b8d2309d16fb1070601457c libede: fix to FileSystemNode::GetPath for nodes that specify a path --- diff --git a/libede/src/FileSystemBox.ec b/libede/src/FileSystemBox.ec index 9744ae1..cbf2189 100644 --- a/libede/src/FileSystemBox.ec +++ b/libede/src/FileSystemBox.ec @@ -1881,12 +1881,15 @@ public: } } else + { /*#ifdef __WIN32__ strcpy(outputPath, "/"); #else*/ - strcpy(outputPath, name); + //strcpy(outputPath, name); + strcpy(outputPath, path); + PathCat(outputPath, name); //#endif - + } } bool IsChildOf(FileSystemNode node)