From 1ec9d830cc8230745d1e8d050fc4ed53e7fd16fd Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Thu, 9 Apr 2015 09:21:30 -0400 Subject: [PATCH] gui: Remove references to the on_remove() notification It no longer exists. Signed-off-by: Anna Schumaker --- gui/tabs.cpp | 2 -- include/gui/tabs.h | 1 - 2 files changed, 3 deletions(-) diff --git a/gui/tabs.cpp b/gui/tabs.cpp index a4987aaf..8c161c5b 100644 --- a/gui/tabs.cpp +++ b/gui/tabs.cpp @@ -72,8 +72,6 @@ void Tab :: tab_finish_init() * */ -void Tab :: on_remove() {} - void Tab :: on_track_added(unsigned int row) { tab_model->on_row_inserted(row); diff --git a/include/gui/tabs.h b/include/gui/tabs.h index 64b13a28..ade31756 100644 --- a/include/gui/tabs.h +++ b/include/gui/tabs.h @@ -53,7 +53,6 @@ public: /** * QNotifier implementation */ - void on_remove(); void on_track_added(unsigned int); virtual void on_track_removed(unsigned int); void on_track_updated(unsigned int);