mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 07:27:22 -06:00
- Suppressed QLayout: Attempting to add QLayout "" to properties "properties" warning message when opening a properties dialog (closes #380414)
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
* Unknown - Christophe DUMEZ <chris@qbittorrent.org> - v1.3.4
|
* Unknown - Christophe DUMEZ <chris@qbittorrent.org> - v1.3.4
|
||||||
- BUGFIX: Fixed IP filter file parsing on 64bits
|
- BUGFIX: Fixed IP filter file parsing on 64bits
|
||||||
|
- BUGFIX: Suppressed QLayout: Attempting to add QLayout "" to properties "properties" warning message when opening a properties dialog
|
||||||
|
|
||||||
* Sun Apr 5 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.3.3
|
* Sun Apr 5 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.3.3
|
||||||
- BUGFIX: Fixed Web UI torrent upload form
|
- BUGFIX: Fixed Web UI torrent upload form
|
||||||
|
|||||||
@@ -136,9 +136,8 @@ properties::properties(QWidget *parent, bittorrent *BTSession, QTorrentHandle &h
|
|||||||
updateInfosTimer->start(3000);
|
updateInfosTimer->start(3000);
|
||||||
progressBar = new RealProgressBar(this);
|
progressBar = new RealProgressBar(this);
|
||||||
progressBar->setForegroundColor(Qt::blue);
|
progressBar->setForegroundColor(Qt::blue);
|
||||||
QVBoxLayout *vbox = new QVBoxLayout(this);
|
progressBarVbox = new QVBoxLayout(RealProgressBox);
|
||||||
vbox->addWidget(progressBar);
|
progressBarVbox->addWidget(progressBar);
|
||||||
RealProgressBox->setLayout(vbox);
|
|
||||||
progressBarUpdater = new RealProgressBarThread(progressBar, h);
|
progressBarUpdater = new RealProgressBarThread(progressBar, h);
|
||||||
progressBarUpdater->start();
|
progressBarUpdater->start();
|
||||||
// progressBarUpdater->refresh();
|
// progressBarUpdater->refresh();
|
||||||
@@ -153,6 +152,7 @@ properties::~properties(){
|
|||||||
delete PropListModel;
|
delete PropListModel;
|
||||||
delete progressBarUpdater;
|
delete progressBarUpdater;
|
||||||
delete progressBar;
|
delete progressBar;
|
||||||
|
delete progressBarVbox;
|
||||||
}
|
}
|
||||||
|
|
||||||
void properties::addFilesToTree(const torrent_file *root, QStandardItem *parent) {
|
void properties::addFilesToTree(const torrent_file *root, QStandardItem *parent) {
|
||||||
|
|||||||
@@ -59,6 +59,7 @@ class properties : public QDialog, private Ui::properties{
|
|||||||
QStringList urlSeeds;
|
QStringList urlSeeds;
|
||||||
RealProgressBar *progressBar;
|
RealProgressBar *progressBar;
|
||||||
RealProgressBarThread *progressBarUpdater;
|
RealProgressBarThread *progressBarUpdater;
|
||||||
|
QVBoxLayout *progressBarVbox;
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
void on_okButton_clicked();
|
void on_okButton_clicked();
|
||||||
|
|||||||
Reference in New Issue
Block a user