2022-02-28 Fred Gleason <fredg@paravelsystems.com>

* Updated rdcatch(1) to eliminate superfluous SQL filter updates.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-02-28 17:55:47 -05:00
parent 6e5de30d34
commit 42c9de3e30
17 changed files with 424 additions and 196 deletions

View File

@@ -2,7 +2,7 @@
//
// Edit a Rivendell Download Event
//
// (C) Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2022 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -41,12 +41,14 @@ class EditDownload : public RDDialog
{
Q_OBJECT
public:
EditDownload(int record_id,std::vector<int> *adds,QString *filter,
QWidget *parent=0);
EditDownload(QString *filter,QWidget *parent=0);
~EditDownload();
QSize sizeHint() const;
QSizePolicy sizePolicy() const;
public slots:
int exec(int record_id,std::vector<int> *adds);
private slots:
void urlChangedData(const QString &str);
void selectCartData();
@@ -65,7 +67,6 @@ class EditDownload : public RDDialog
void Save();
bool CheckEvent(bool include_myself);
RDDeck *edit_deck;
RDCutDialog *edit_cut_dialog;
RDRecording *edit_recording;
QLabel *edit_description_label;
QLineEdit *edit_description_edit;