mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 07:18:08 +00:00
Clean up URL seed code
Center bandwidth limiting dialogs
This commit is contained in:
parent
dedd9bd03c
commit
83cf3aebab
@ -379,24 +379,15 @@ void PropertiesWidget::loadDynamicData() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void PropertiesWidget::loadUrlSeeds(){
|
void PropertiesWidget::loadUrlSeeds(){
|
||||||
QStringList already_added;
|
|
||||||
listWebSeeds->clear();
|
listWebSeeds->clear();
|
||||||
QStringList url_seeds = h.url_seeds();
|
qDebug("Loading URL seeds");
|
||||||
foreach(const QString &url_seed, url_seeds){
|
|
||||||
if(!url_seed.isEmpty()) {
|
|
||||||
new QListWidgetItem(url_seed, listWebSeeds);
|
|
||||||
already_added << url_seed;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Load the hard-coded url seeds
|
|
||||||
QStringList hc_seeds = h.url_seeds();
|
QStringList hc_seeds = h.url_seeds();
|
||||||
// Add hard coded url seeds
|
// Add url seeds
|
||||||
foreach(const QString &hc_seed, hc_seeds){
|
foreach(const QString &hc_seed, hc_seeds){
|
||||||
if(!already_added.contains(hc_seed)){
|
qDebug("Loading URL seed: %s", hc_seed.toLocal8Bit().data());
|
||||||
new QListWidgetItem(hc_seed, listWebSeeds);
|
new QListWidgetItem(hc_seed, listWebSeeds);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* Tab buttons */
|
/* Tab buttons */
|
||||||
QPushButton* PropertiesWidget::getButtonFromIndex(int index) {
|
QPushButton* PropertiesWidget::getButtonFromIndex(int index) {
|
||||||
|
@ -50,6 +50,7 @@ class SpeedLimitDialog : public QDialog, private Ui_bandwidth_dlg {
|
|||||||
// Connect to slots
|
// Connect to slots
|
||||||
connect(bandwidthSlider, SIGNAL(valueChanged(int)), this, SLOT(updateSpinValue(int)));
|
connect(bandwidthSlider, SIGNAL(valueChanged(int)), this, SLOT(updateSpinValue(int)));
|
||||||
connect(spinBandwidth, SIGNAL(valueChanged(int)), this, SLOT(updateSliderValue(int)));
|
connect(spinBandwidth, SIGNAL(valueChanged(int)), this, SLOT(updateSliderValue(int)));
|
||||||
|
move(misc::screenCenter(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
~SpeedLimitDialog(){
|
~SpeedLimitDialog(){
|
||||||
|
Loading…
Reference in New Issue
Block a user