forked from qt-creator/qt-creator
pathchooser: compile fix with stringbuilder
Change-Id: I6d48a40adcd53c8a9099116f5a8bbc74dd6509d9 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -166,7 +166,8 @@ QString BinaryVersionToolTipEventFilter::toolVersion(const QString &binary, cons
|
||||
Utils::SynchronousProcess::stopProcess(proc);
|
||||
return QString();
|
||||
}
|
||||
return QString::fromLocal8Bit(proc.readAllStandardOutput() + proc.readAllStandardError());
|
||||
return QString::fromLocal8Bit(QByteArray(proc.readAllStandardOutput()
|
||||
+ proc.readAllStandardError()));
|
||||
}
|
||||
|
||||
// Extends BinaryVersionToolTipEventFilter to prepend the existing pathchooser
|
||||
|
||||
Reference in New Issue
Block a user