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

* Fixed a regression in 'RDLogFilter' that caused a SQL error to be
	generated filtering for 'recent' logs.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2022-03-02 14:03:29 -05:00
parent f1cd8f5e2f
commit bd2fee5e7b
2 changed files with 5 additions and 2 deletions

View File

@ -22924,3 +22924,6 @@
2022-03-02 Fred Gleason <fredg@paravelsystems.com> 2022-03-02 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in the log filter widget that caused entries in the * Fixed a bug in the log filter widget that caused entries in the
'Services' dropdown be listed in non-alphabetical order. 'Services' dropdown be listed in non-alphabetical order.
2022-03-02 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in 'RDLogFilter' that caused a SQL error to be
generated filtering for 'recent' logs.

View File

@ -246,8 +246,8 @@ void RDLogListModel::updateModel(const QString &filter_sql)
"where "+ "where "+
"(`TYPE`=0)&&"+ "(`TYPE`=0)&&"+
"(`LOG_EXISTS`='Y') "+ "(`LOG_EXISTS`='Y') "+
filter_sql+ filter_sql;
"order by `NAME` "; // "order by `NAME` ";
beginResetModel(); beginResetModel();
d_texts.clear(); d_texts.clear();
d_icons.clear(); d_icons.clear();