1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 09:32:12 +01:00

Merge pull request #1858 from innermous/master

Fix tabwidget signals connect
This commit is contained in:
David Rosca 2016-02-15 19:44:21 +01:00
commit b97029eb50

View File

@ -397,7 +397,7 @@ int TabWidget::addView(WebTab* tab)
tab->attach(m_window);
connect(tab->webView(), SIGNAL(wantsCloseTab(int)), this, SLOT(closeTab(int)));
connect(tab->webView(), SIGNAL(changed()), this, SIGNAL(changed()));
connect(tab->webView(), SIGNAL(urlChanged(QUrl)), this, SIGNAL(changed()));
connect(tab->webView(), SIGNAL(ipChanged(QString)), m_window->ipLabel(), SLOT(setText(QString)));
return index;