1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

Remove unnecessary qDebugs

This commit is contained in:
David Rosca 2014-09-26 09:53:45 +02:00
parent 2730fd4b4a
commit 35b2fb22b4
2 changed files with 1 additions and 4 deletions

View File

@ -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"))

View File

@ -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);
}