From e989e686a496fbaec6312866f9ebab9c310ecb55 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 25 Apr 2011 14:02:33 +0000 Subject: [PATCH] Fix debug message --- src/torrentadditiondlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torrentadditiondlg.cpp b/src/torrentadditiondlg.cpp index df9532902..b7df65214 100644 --- a/src/torrentadditiondlg.cpp +++ b/src/torrentadditiondlg.cpp @@ -135,7 +135,7 @@ void torrentAdditionDialog::readSettings() { QIniSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); restoreGeometry(settings.value("TorrentAdditionDlg/dimensions").toByteArray()); if(!torrentContentList->header()->restoreState(settings.value("TorrentAdditionDlg/ContentHeaderState").toByteArray())) { - qDebug() << Q_FUNC_INFO << "First executation, resize first section to 200px..."; + qDebug() << Q_FUNC_INFO << "First executation, resize first section to 400px..."; torrentContentList->header()->resizeSection(0, 400); //Default } }