From e93fab40fedaa16769d61a2eb62a633963861929 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 18 Nov 2009 18:07:31 +0000 Subject: [PATCH] - Removed some too verbose debug - Suppress a Qt warning about the layout in status bar --- src/bittorrent.cpp | 4 ++-- src/statusbar.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index c58b701f2..cfdcb39fd 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -1135,7 +1135,7 @@ void bittorrent::loadFilesPriorities(QTorrentHandle &h) { if( priority < 0 || priority > 7) { priority = 1; } - qDebug("Setting file piority to %d", priority); + //qDebug("Setting file piority to %d", priority); v.push_back(priority); } if(v.size() == (unsigned int)h.num_files()) @@ -1887,7 +1887,7 @@ void bittorrent::importOldTempData(QString torrent_path) { if( priority < 0 || priority > 7) { priority = 1; } - qDebug("Setting piece piority to %d", priority); + //qDebug("Setting piece piority to %d", priority); pp.push_back(priority); } TorrentTempData::setFilesPriority(hash, pp); diff --git a/src/statusbar.h b/src/statusbar.h index 95f7b32ed..b1062aff6 100644 --- a/src/statusbar.h +++ b/src/statusbar.h @@ -60,7 +60,7 @@ private: public: StatusBar(QStatusBar *bar, bittorrent *BTSession): bar(bar), BTSession(BTSession) { container = new QWidget(); - layout = new QGridLayout(bar); + layout = new QGridLayout(container); layout->setVerticalSpacing(0); layout->setContentsMargins(0,0,0,0);