mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 08:33:39 +02:00
2018-01-16 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdlogedit(1) that broke the 'Clear' button.
This commit is contained in:
@@ -16591,3 +16591,5 @@
|
||||
2018-01-12 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Updated 'NEWS'.
|
||||
* Incremented the package version to 2.18.2int02.
|
||||
2018-01-16 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in rdlogedit(1) that broke the 'Clear' button.
|
||||
|
@@ -95,7 +95,7 @@ RDLogFilter::RDLogFilter(RDLogFilter::FilterMode mode,RDUser *user,
|
||||
filter_filter_label->setBuddy(filter_filter_edit);
|
||||
connect(filter_filter_edit,SIGNAL(textChanged(const QString &)),
|
||||
this,SLOT(filterChangedData(const QString &)));
|
||||
connect(filter_clear_button,SIGNAL(clicked()),this,SLOT(filterChangedData()));
|
||||
connect(filter_clear_button,SIGNAL(clicked()),this,SLOT(filterClearedData()));
|
||||
|
||||
//
|
||||
// Show Recent
|
||||
@@ -192,6 +192,13 @@ void RDLogFilter::filterChangedData()
|
||||
}
|
||||
|
||||
|
||||
void RDLogFilter::filterClearedData()
|
||||
{
|
||||
filter_filter_edit->clear();
|
||||
filterChangedData();
|
||||
}
|
||||
|
||||
|
||||
void RDLogFilter::serviceChangedData(int n)
|
||||
{
|
||||
emit filterChanged(whereSql());
|
||||
|
@@ -50,6 +50,7 @@ class RDLogFilter : public QWidget
|
||||
private slots:
|
||||
void filterChangedData(const QString &str);
|
||||
void filterChangedData();
|
||||
void filterClearedData();
|
||||
void serviceChangedData(int n);
|
||||
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user