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