Browse Source

- Fixed segfault that would happen when unfiltering files in torrent addition dialog (closes #163379)

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
2691677650
  1. 3
      src/PropListDelegate.h

3
src/PropListDelegate.h

@ -181,7 +181,8 @@ class PropListDelegate: public QItemDelegate { @@ -181,7 +181,8 @@ class PropListDelegate: public QItemDelegate {
// } else {
model->setData(index, QVariant(HIGH));
model->setData(index, QVariant(NORMAL));
*filteredFilesChanged = true;
if(filteredFilesChanged != 0)
*filteredFilesChanged = true;
// }
break;
case 2:

Loading…
Cancel
Save