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:
@@ -565,7 +565,7 @@ void QtMainWindow::newProject()
|
||||
wizzard->newProject();
|
||||
}
|
||||
|
||||
void QtMainWindow::newProjectFromCDB(const std::string& filePath, const std::vector<std::string>& headerPaths)
|
||||
void QtMainWindow::newProjectFromCDB(const FilePath& filePath)
|
||||
{
|
||||
QtProjectWizzard* wizzard = dynamic_cast<QtProjectWizzard*>(m_windowStack.getTopWindow());
|
||||
if (!wizzard)
|
||||
@@ -573,13 +573,7 @@ void QtMainWindow::newProjectFromCDB(const std::string& filePath, const std::vec
|
||||
wizzard = createWindow<QtProjectWizzard>();
|
||||
}
|
||||
|
||||
std::vector<FilePath> headerFilePaths;
|
||||
for (const std::string& s: headerPaths)
|
||||
{
|
||||
headerFilePaths.push_back(FilePath(s));
|
||||
}
|
||||
|
||||
wizzard->newProjectFromCDB(FilePath(filePath), headerFilePaths);
|
||||
wizzard->newProjectFromCDB(filePath);
|
||||
}
|
||||
|
||||
void QtMainWindow::openProject()
|
||||
|
||||
Reference in New Issue
Block a user