We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6642fb commit e83f25dCopy full SHA for e83f25d
ui/debugserversetting.cpp
@@ -89,7 +89,7 @@ void DebugServerSettingsDialog::apply()
89
{
90
std::string host = m_addressEntry->text().toStdString();
91
m_controller->SetRemoteHost(host);
92
- auto data = new Metadata(host);
+ Ref<Metadata> data = new Metadata(host);
93
m_controller->GetData()->StoreMetadata("debugger.remote_host", data);
94
95
std::string portString = m_portEntry->text().toStdString();
0 commit comments