2021-06-10 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in the 'Edit Event' dialog in rdlogmanager(1) that
	threw a SQL error.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-06-10 15:47:13 -04:00
parent feb435e7d9
commit 30e643efc2
2 changed files with 4 additions and 1 deletions

View File

@ -21876,3 +21876,6 @@
value in the 'RDPasswd::exec()' method.
2021-06-10 Fred Gleason <fredg@paravelsystems.com>
* Fixed a typo in 'RDClock::load()' that threw a SQL error.
2021-06-10 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in the 'Edit Event' dialog in rdlogmanager(1) that
threw a SQL error.

View File

@ -486,7 +486,7 @@ EditEvent::EditEvent(QString eventname,bool new_event,
//
event_sched_group_box=new RDComboBox(this);
event_sched_group_box->setGeometry(CENTER_LINE+510,384,100,20);
QString sql2="select NAME from GROUPS order by NAME";
QString sql2="select `NAME` from `GROUPS` order by `NAME`";
RDSqlQuery *q2=new RDSqlQuery(sql2);
while(q2->next()) {
event_sched_group_box->insertItem(q2->value(0).toString());