Browse Source

Inspector: Add a missing "override" in RemoteObjectGraphModel

Andreas Kling 6 years ago
parent
commit
736dc5f6c0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      DevTools/Inspector/RemoteObjectGraphModel.h

+ 1 - 1
DevTools/Inspector/RemoteObjectGraphModel.h

@@ -18,7 +18,7 @@ public:
     virtual int column_count(const GModelIndex& = GModelIndex()) const override;
     virtual GVariant data(const GModelIndex&, Role = Role::Display) const override;
     virtual GModelIndex index(int row, int column, const GModelIndex& parent = GModelIndex()) const override;
-    virtual GModelIndex parent_index(const GModelIndex&) const;
+    virtual GModelIndex parent_index(const GModelIndex&) const override;
     virtual void update() override;
 
 private: