From ca33c89d956086d83c07589d6ee6711b62cb57f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=B5=D0=BB=D0=B8=D0=BF=D0=B5=D0=BD=D0=BA=D0=BE=20?= =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD?= Date: Tue, 7 Apr 2015 09:51:17 +0000 Subject: [PATCH] PIDir fix PICoutManipulator git-svn-id: svn://db.shs.com.ru/pip@69 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5 --- src/io/pifile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/pifile.cpp b/src/io/pifile.cpp index 72a04876..eb24251f 100755 --- a/src/io/pifile.cpp +++ b/src/io/pifile.cpp @@ -267,7 +267,7 @@ PIString PIFile::strType(const PIIODevice::DeviceMode type) { PIFile::FileInfo PIFile::fileInfo(const PIString & path) { FileInfo ret; if (path.isEmpty()) return ret; - ret.path = path; + ret.path = path.replaceAll("\\", PIDir::separator); PIString n = ret.name(); //piCout << "open" << path; #ifdef WINDOWS