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:
mlangkabel
2018-01-30 17:07:51 +01:00
parent 471b1757df
commit c99e79364f
46 changed files with 319 additions and 337 deletions
+2 -3
View File
@@ -189,13 +189,12 @@ void QtMainView::handleMessage(MessageProjectEdit* message)
void QtMainView::handleMessage(MessageProjectNew* message)
{
std::string cdbPath = message->cdbPath;
std::vector<std::string> headerPaths = message->headerPaths;
FilePath cdbPath = message->cdbPath;
m_onQtThread(
[=]()
{
m_window->newProjectFromCDB(cdbPath, headerPaths);
m_window->newProjectFromCDB(cdbPath);
}
);
}