Просмотр исходного кода

LibWeb: Add missing implementation of method in AnimationTimeline

Matthew Olsson 1 год назад
Родитель
Сommit
c732e03ea0
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Userland/Libraries/LibWeb/Animations/AnimationTimeline.h

+ 1 - 1
Userland/Libraries/LibWeb/Animations/AnimationTimeline.h

@@ -31,7 +31,7 @@ public:
 
 
     void associate_with_animation(JS::NonnullGCPtr<Animation> value) { m_associated_animations.set(value); }
     void associate_with_animation(JS::NonnullGCPtr<Animation> value) { m_associated_animations.set(value); }
     void disassociate_with_animation(JS::NonnullGCPtr<Animation> value) { m_associated_animations.remove(value); }
     void disassociate_with_animation(JS::NonnullGCPtr<Animation> value) { m_associated_animations.remove(value); }
-    HashTable<JS::NonnullGCPtr<Animation>> const& associated_animations() const;
+    HashTable<JS::NonnullGCPtr<Animation>> const& associated_animations() const { return m_associated_animations; }
 
 
 protected:
 protected:
     AnimationTimeline(JS::Realm&);
     AnimationTimeline(JS::Realm&);