forked from qt-creator/qt-creator
Java: use a temporary directory for the workspace
Change-Id: Ie8fc01f680393f141f099f57b98eb16a10b37d7e Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -722,7 +722,10 @@ Utils::CommandLine StdIOSettings::command() const
|
||||
|
||||
BaseClientInterface *StdIOSettings::createInterface() const
|
||||
{
|
||||
return new StdIOClientInterface(m_executable, arguments());
|
||||
auto interface = new StdIOClientInterface;
|
||||
interface->setExecutable(m_executable);
|
||||
interface->setArguments(arguments());
|
||||
return interface;
|
||||
}
|
||||
|
||||
class JsonTreeItemDelegate : public QStyledItemDelegate
|
||||
|
||||
Reference in New Issue
Block a user