From f02c9aaac4ccb648ff88ac0ff596df26d1da5da0 Mon Sep 17 00:00:00 2001 From: Sergey Bugaev Date: Wed, 2 Oct 2019 22:46:53 +0300 Subject: [PATCH] LibGUI: Remove GModel::on_selection_changed The selection is no longer managed by the model. --- Libraries/LibGUI/GModel.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Libraries/LibGUI/GModel.h b/Libraries/LibGUI/GModel.h index 05ab64a83c..3f2654c3f5 100644 --- a/Libraries/LibGUI/GModel.h +++ b/Libraries/LibGUI/GModel.h @@ -65,7 +65,6 @@ public: void unregister_view(Badge, GAbstractView&); Function on_update; - Function on_selection_changed; protected: GModel();