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 fa80e0e commit c2191eaCopy full SHA for c2191ea
Source/Objects/LuaObject.h
@@ -178,7 +178,7 @@ struct LuaPropertiesPanel
178
179
PropertyFrame* newFrame(String const& title)
180
{
181
- currentFrame = pendingFrames.add(std::make_unique<PropertyFrame>(title));
+ currentFrame = pendingFrames.add(std::unique_ptr<PropertyFrame>{ new PropertyFrame{title, {}} });
182
return currentFrame;
183
}
184
0 commit comments