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

Fix tabwidget signals connect

This commit is contained in:
Vladislav Tronko 2016-02-15 20:34:20 +02:00
parent a262de8239
commit 3f3f9eb428

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;