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

Fix previous commit

This commit is contained in:
David Rosca 2015-09-29 16:37:22 +02:00
parent 6e6f934535
commit f448bba885

View File

@ -366,7 +366,7 @@ int TabWidget::addView(const LoadRequest &req, const QString &title, const Qz::N
} }
connect(webTab->webView(), SIGNAL(wantsCloseTab(int)), this, SLOT(closeTab(int))); connect(webTab->webView(), SIGNAL(wantsCloseTab(int)), this, SLOT(closeTab(int)));
connect(webTab->webView(), SIGNAL(changed()), this, SIGNAL(changed())); connect(webTab->webView(), SIGNAL(urlChanged(QUrl)), this, SIGNAL(changed()));
connect(webTab->webView(), SIGNAL(ipChanged(QString)), m_window->ipLabel(), SLOT(setText(QString))); connect(webTab->webView(), SIGNAL(ipChanged(QString)), m_window->ipLabel(), SLOT(setText(QString)));
if (url.isValid() && url != req.url()) { if (url.isValid() && url != req.url()) {