logic: more wstring usages
* removed header paths from VS Project setup message since VS doesn't send these anymore * implemented using wstring in IDE communication * fixed retrieving filepaths from QtDirectoryListbox that contain special characters * use wstring for source extensions * added special character as file extension to FileManagerTestSuite
This commit is contained in:
@@ -396,6 +396,11 @@ std::string FilePath::extension() const
|
||||
return m_path->extension().generic_string();
|
||||
}
|
||||
|
||||
std::wstring FilePath::wExtension() const
|
||||
{
|
||||
return m_path->extension().generic_wstring();
|
||||
}
|
||||
|
||||
FilePath FilePath::withoutExtension() const
|
||||
{
|
||||
return FilePath(getPath().replace_extension().wstring());
|
||||
|
||||
Reference in New Issue
Block a user