Browse Source

- Fixed compilation warning

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
725ef52cfe
  1. 2
      src/downloadingTorrents.cpp

2
src/downloadingTorrents.cpp

@ -341,7 +341,7 @@ void DownloadingTorrents::hideOrShowColumn(int index) { @@ -341,7 +341,7 @@ void DownloadingTorrents::hideOrShowColumn(int index) {
}
for(int i=0; i<DLListModel->columnCount()-1; i++) {
if(i != index) {
downloadList->setColumnWidth(i, floor(downloadList->columnWidth(i)-(downloadList->columnWidth(index)/(nbColumns-1))));
downloadList->setColumnWidth(i, (int)floor(downloadList->columnWidth(i)-(downloadList->columnWidth(index)/(nbColumns-1))));
}
}
}

Loading…
Cancel
Save