From 736dc5f6c061483c62817d48e1ba57bdd79e2ede Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 19 Aug 2019 19:46:40 +0200 Subject: [PATCH] Inspector: Add a missing "override" in RemoteObjectGraphModel --- DevTools/Inspector/RemoteObjectGraphModel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DevTools/Inspector/RemoteObjectGraphModel.h b/DevTools/Inspector/RemoteObjectGraphModel.h index 4281d22740..0edbd2981a 100644 --- a/DevTools/Inspector/RemoteObjectGraphModel.h +++ b/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: