diff options
Diffstat (limited to 'Libraries/LibWeb/Bindings/LocationObject.cpp')
-rw-r--r-- | Libraries/LibWeb/Bindings/LocationObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/Bindings/LocationObject.cpp b/Libraries/LibWeb/Bindings/LocationObject.cpp index bb14fa368b..09fa7be967 100644 --- a/Libraries/LibWeb/Bindings/LocationObject.cpp +++ b/Libraries/LibWeb/Bindings/LocationObject.cpp @@ -36,7 +36,7 @@ namespace Web { namespace Bindings { LocationObject::LocationObject(JS::GlobalObject& global_object) - : Object(global_object.object_prototype()) + : Object(*global_object.object_prototype()) { } |