summaryrefslogtreecommitdiff
path: root/dviware/dvisvgm/src/FilePath.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dviware/dvisvgm/src/FilePath.cpp')
-rw-r--r--dviware/dvisvgm/src/FilePath.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/dviware/dvisvgm/src/FilePath.cpp b/dviware/dvisvgm/src/FilePath.cpp
index c859d30469..6f162bfab9 100644
--- a/dviware/dvisvgm/src/FilePath.cpp
+++ b/dviware/dvisvgm/src/FilePath.cpp
@@ -122,7 +122,7 @@ void FilePath::init (string path, bool isfile, string current_dir) {
single_slashes(path);
single_slashes(current_dir);
#ifdef _WIN32
- path = FileSystem::adaptPathSeperators(path);
+ path = FileSystem::ensureForwardSlashes(path);
_drive = strip_drive_letter(path);
#endif
if (isfile) {
@@ -303,7 +303,7 @@ bool FilePath::exists () const {
bool FilePath::isAbsolute (string path) {
path = util::trim(path);
#ifdef _WIN32
- path = FileSystem::adaptPathSeperators(path);
+ path = FileSystem::ensureForwardSlashes(path);
if (path.length() >= 2 && path[1] == ':' && isalpha(path[0]))
path.erase(0, 2); // remove drive letter and colon
#endif