GUI: trim given vs include paths

This commit is contained in:
Daniel Marjamäki 2017-08-10 15:17:41 +02:00
parent 4cc5a594da
commit c29536cfe1
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ void CheckThread::runAddons(const QString &addonPath, const ImportProject::FileS
foreach (QString s, mVsIncludePaths.split(";")) {
if (!s.isEmpty()) {
s.replace("\\", "/");
args << "-isystem" << s;
args << "-isystem" << s.trimmed();
}
}