mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 23:17:21 -06:00
Correctly escape transfer list filter value typed by user
This commit is contained in:
@@ -859,8 +859,8 @@ void TransferListWidget::applyLabelFilter(QString label) {
|
|||||||
labelFilterModel->setFilterRegExp(QRegExp("^" + QRegExp::escape(label) + "$", Qt::CaseSensitive));
|
labelFilterModel->setFilterRegExp(QRegExp("^" + QRegExp::escape(label) + "$", Qt::CaseSensitive));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TransferListWidget::applyNameFilter(QString name) {
|
void TransferListWidget::applyNameFilter(const QString& name) {
|
||||||
nameFilterModel->setFilterRegExp(QRegExp(name, Qt::CaseInsensitive));
|
nameFilterModel->setFilterRegExp(QRegExp(QRegExp::escape(name), Qt::CaseInsensitive));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TransferListWidget::applyStatusFilter(int f) {
|
void TransferListWidget::applyStatusFilter(int f) {
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ public slots:
|
|||||||
void previewSelectedTorrents();
|
void previewSelectedTorrents();
|
||||||
void hidePriorityColumn(bool hide);
|
void hidePriorityColumn(bool hide);
|
||||||
void displayDLHoSMenu(const QPoint&);
|
void displayDLHoSMenu(const QPoint&);
|
||||||
void applyNameFilter(QString name);
|
void applyNameFilter(const QString& name);
|
||||||
void applyStatusFilter(int f);
|
void applyStatusFilter(int f);
|
||||||
void applyLabelFilter(QString label);
|
void applyLabelFilter(QString label);
|
||||||
void previewFile(QString filePath);
|
void previewFile(QString filePath);
|
||||||
|
|||||||
Reference in New Issue
Block a user