mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 09:03: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:
@@ -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();
|
||||
|
Reference in New Issue
Block a user