2022-12-02 Fred Gleason <fredg@paravelsystems.com>

* Fixed bugs in the notification subsystem that cause multiple
	entries to appear in log listings when a new log was created.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-12-03 11:25:24 -05:00
parent a157602e10
commit 86ba78fa3d
4 changed files with 64 additions and 12 deletions

View File

@@ -53,6 +53,8 @@ class RDLogListModel : public QAbstractTableModel
public slots:
void setFilterSql(const QString &sql);
private slots:
void processNotification(RDNotification *notify);
protected:
@@ -69,6 +71,7 @@ class RDLogListModel : public QAbstractTableModel
QList<QList<QVariant> > d_texts;
QList<QList<QVariant> > d_icons;
QList<QVariant> d_alignments;
QString d_filter_sql;
};