mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-04 14:39:09 +02:00
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:
parent
feb435e7d9
commit
30e643efc2
@ -21876,3 +21876,6 @@
|
|||||||
value in the 'RDPasswd::exec()' method.
|
value in the 'RDPasswd::exec()' method.
|
||||||
2021-06-10 Fred Gleason <fredg@paravelsystems.com>
|
2021-06-10 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a typo in 'RDClock::load()' that threw a SQL error.
|
* 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.
|
||||||
|
@ -486,7 +486,7 @@ EditEvent::EditEvent(QString eventname,bool new_event,
|
|||||||
//
|
//
|
||||||
event_sched_group_box=new RDComboBox(this);
|
event_sched_group_box=new RDComboBox(this);
|
||||||
event_sched_group_box->setGeometry(CENTER_LINE+510,384,100,20);
|
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);
|
RDSqlQuery *q2=new RDSqlQuery(sql2);
|
||||||
while(q2->next()) {
|
while(q2->next()) {
|
||||||
event_sched_group_box->insertItem(q2->value(0).toString());
|
event_sched_group_box->insertItem(q2->value(0).toString());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user