mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-27 23:14:31 +00:00
Fix compilation warning
This commit is contained in:
parent
61a05c7e5b
commit
dd9e290a60
@ -886,7 +886,7 @@ bool TransferListWidget::loadColWidthList() {
|
|||||||
qDebug("Corrupted values for transfer list columns sizes");
|
qDebug("Corrupted values for transfer list columns sizes");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
for(unsigned int i=0; i<listSize; ++i) {
|
for(int i=0; i<listSize; ++i) {
|
||||||
header()->resizeSection(i, width_list.at(i).toInt());
|
header()->resizeSection(i, width_list.at(i).toInt());
|
||||||
}
|
}
|
||||||
const QList<int> visualIndexes = misc::intListfromStringList(settings.value(QString::fromUtf8("TransferListVisualIndexes")).toStringList());
|
const QList<int> visualIndexes = misc::intListfromStringList(settings.value(QString::fromUtf8("TransferListVisualIndexes")).toStringList());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user