Skip to content

Commit c2191ea

Browse files
committed
Compilation fix
1 parent fa80e0e commit c2191ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Objects/LuaObject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ struct LuaPropertiesPanel
178178

179179
PropertyFrame* newFrame(String const& title)
180180
{
181-
currentFrame = pendingFrames.add(std::make_unique<PropertyFrame>(title));
181+
currentFrame = pendingFrames.add(std::unique_ptr<PropertyFrame>{ new PropertyFrame{title, {}} });
182182
return currentFrame;
183183
}
184184

0 commit comments

Comments
 (0)