1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-26 22:44:36 +00:00

Fix compilation warning

This commit is contained in:
Christophe Dumez 2010-11-28 19:17:32 +00:00
parent 61a05c7e5b
commit dd9e290a60

View File

@ -886,7 +886,7 @@ bool TransferListWidget::loadColWidthList() {
qDebug("Corrupted values for transfer list columns sizes");
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());
}
const QList<int> visualIndexes = misc::intListfromStringList(settings.value(QString::fromUtf8("TransferListVisualIndexes")).toStringList());