diff --git a/ChangeLog b/ChangeLog index 93b06065..21a7c9ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -20824,3 +20824,5 @@ 2021-01-18 Fred Gleason * Fixed a regression in rdlibrary(1) that caused macro carts to get an evergreen background color. +2021-01-18 Fred Gleason + * Removed unused method from 'RDLibraryModel'. diff --git a/lib/rdlibrarymodel.cpp b/lib/rdlibrarymodel.cpp index 1a360b58..e4b7f11a 100644 --- a/lib/rdlibrarymodel.cpp +++ b/lib/rdlibrarymodel.cpp @@ -450,11 +450,6 @@ void RDLibraryModel::setFilterSql(const QString &sql) } -void RDLibraryModel::processNotification(RDNotification *notify) -{ -} - - void RDLibraryModel::updateModel(const QString &filter_sql) { QString sql; diff --git a/lib/rdlibrarymodel.h b/lib/rdlibrarymodel.h index 905d46d7..d20adbff 100644 --- a/lib/rdlibrarymodel.h +++ b/lib/rdlibrarymodel.h @@ -70,7 +70,6 @@ class RDLibraryModel : public QAbstractItemModel public slots: void setShowNotes(int state); void setFilterSql(const QString &sql); - void processNotification(RDNotification *notify); protected: void updateModel(const QString &filter_sql);