mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 02:36:34 +01:00
Remove unnecessary qDebugs
This commit is contained in:
parent
2730fd4b4a
commit
35b2fb22b4
@ -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"))
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user