1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01: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; isoCodecs << codecName;
} }
else if (codecName.startsWith(QLatin1String("UTF")) && !utfCodecs.contains(codecName)) { else if (codecName.startsWith(QLatin1String("UTF")) && !utfCodecs.contains(codecName)) {
qDebug() << codecName << QTextCodec::codecForName(codecName.toUtf8())->mibEnum();
utfCodecs << codecName; utfCodecs << codecName;
} }
else if (codecName.startsWith(QLatin1String("windows")) else if (codecName.startsWith(QLatin1String("windows"))

View File

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