Remove unnecessary qDebugs

remotes/origin/falkon
David Rosca 12 years ago
parent 2730fd4b4a
commit 35b2fb22b4
  1. 1
      src/lib/app/browserwindow.cpp
  2. 4
      src/lib/webkit/webpage.cpp

@ -995,7 +995,6 @@ void BrowserWindow::createEncodingMenu(QMenu* menu)
isoCodecs << codecName;
}
else if (codecName.startsWith(QLatin1String("UTF")) && !utfCodecs.contains(codecName)) {
qDebug() << codecName << QTextCodec::codecForName(codecName.toUtf8())->mibEnum();
utfCodecs << codecName;
}
else if (codecName.startsWith(QLatin1String("windows"))

@ -451,7 +451,7 @@ void WebPage::windowCloseRequested()
webView->closeView();
}
void WebPage::frameCreated(QWebFrame *frame)
void WebPage::frameCreated(QWebFrame* frame)
{
connect(frame, SIGNAL(initialLayoutCompleted()), this, SLOT(frameInitialLayoutCompleted()));
}
@ -462,8 +462,6 @@ void WebPage::frameInitialLayoutCompleted()
if (!frame)
return;
qDebug() << frame;
// Autofill
m_passwordEntries = mApp->autoFill()->completeFrame(frame);
}

Loading…
Cancel
Save