src: broad refactoring to use FilePath.wstr() where easily possible

This commit is contained in:
mlangkabel
2018-02-06 11:35:36 +01:00
parent 9da3ac3d3c
commit f0b817eb0a
34 changed files with 106 additions and 103 deletions
+2 -2
View File
@@ -37,7 +37,7 @@ bool Settings::load(const FilePath& filePath)
{
clear();
m_filePath = filePath;
LOG_WARNING("File for Settings not found: " + filePath.str());
LOG_WARNING(L"File for Settings not found: " + filePath.wstr());
return false;
}
}
@@ -50,7 +50,7 @@ void Settings::save()
}
else
{
LOG_WARNING("Settings were not saved: " + m_filePath.str());
LOG_WARNING(L"Settings were not saved: " + m_filePath.wstr());
}
}