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