From kde-commits Sun Feb 08 11:54:25 2004 From: Antonio Larrosa Jimenez Date: Sun, 08 Feb 2004 11:54:25 +0000 To: kde-commits Subject: KDE_3_2_BRANCH: kdeaddons/konq-plugins/webarchiver Message-Id: <20040208115425.5F28A9191 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=107624127922359 CVS commit by antlarr: Backport of "Removing excesive debug output" M +3 -6 archivedialog.cpp 1.3.2.1 --- kdeaddons/konq-plugins/webarchiver/archivedialog.cpp #1.3:1.3.2.1 @@ -43,5 +43,6 @@ #include -#define DEBUG_WAR +#undef DEBUG_WAR + ArchiveDialog::ArchiveDialog(QWidget *parent, const QString &filename, KHTMLPart *part) : @@ -171,5 +172,5 @@ void ArchiveDialog::saveToArchive(QTextS catch (...) { - kdDebug() << "excepcion" << endl; + kdDebug() << "exception" << endl; } } @@ -188,5 +189,4 @@ void ArchiveDialog::saveArchiveRecursive if ( !element.isNull() ) { - kdDebug() << "aa" << endl; if (nodeName.at(0)=='-') { /* Don't save khtml internal tags '-konq..' @@ -293,5 +293,4 @@ void ArchiveDialog::saveArchiveRecursive while(!child.isNull()) { - kdDebug() << "childnotnull" << endl; saveArchiveRecursive(child, baseURL, _textStream, indent+2); child = child.nextSibling(); @@ -299,5 +298,4 @@ void ArchiveDialog::saveArchiveRecursive if (!(element.isNull())) { - kdDebug() << "not element null" << endl; if (nodeName == "AREA" || nodeName == "BASE" || nodeName == "BASEFONT" || nodeName == "BR" || nodeName == "COL" || nodeName == "FRAME" || @@ -351,5 +349,4 @@ QString ArchiveDialog::handleLink(const void ArchiveDialog::downloadNext() { - if (m_iterator>=m_urlsToDownload.count()) {