2017-01-18 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in 'rdlogedit/edit_log.cpp' that caused a change
	to the Auto Refresh flag to fail to be saved.
This commit is contained in:
Fred Gleason 2017-01-18 13:58:52 -05:00
parent 15f3da11d4
commit 59afec0a59
3 changed files with 12 additions and 0 deletions

View File

@ -15521,3 +15521,6 @@
to be returned for Chain events.
2017-01-18 Fred Gleason <fredg@paravelsystems.com>
* Added a 'LOG_NAME' call parameter to the 'ListLogs' web service.
2017-01-18 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in 'rdlogedit/edit_log.cpp' that caused a change
to the Auto Refresh flag to fail to be saved.

View File

@ -241,6 +241,8 @@ EditLog::EditLog(QString logname,QString *filter,QString *group,
new QLabel(edit_autorefresh_box,tr("Enable AutoRefresh:"),this);
edit_autorefresh_label->setFont(label_font);
edit_autorefresh_label->setAlignment(AlignRight|AlignVCenter);
connect(edit_autorefresh_box,SIGNAL(activated(int)),
this,SLOT(autorefreshChangedData(int)));
//
// Start Date
@ -675,6 +677,12 @@ void EditLog::dateValueChangedData(const QDate &)
}
void EditLog::autorefreshChangedData(int index)
{
SetLogModified(true);
}
void EditLog::insertCartButtonData()
{
int line;

View File

@ -64,6 +64,7 @@ class EditLog : public QDialog
void selectPurgeDateData();
void serviceActivatedData(const QString &svcname);
void dateValueChangedData(const QDate &);
void autorefreshChangedData(int index);
void startDateEnabledData(bool);
void endDateEnabledData(bool);
void insertCartButtonData();