mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-06-04 06:02:40 +02:00
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:
parent
15f3da11d4
commit
59afec0a59
@ -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.
|
||||
|
@ -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;
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user