Shib: remove slotLoadFinished() from webview dtor

This is a relict from when the webview was reused.
It is now pointless, since it's now destruct-on-close.
This commit is contained in:
Daniel Molkentin 2014-06-14 02:56:12 +02:00
parent 4abe00ff6c
commit b2966fecc7
2 changed files with 1 additions and 2 deletions

View File

@ -65,7 +65,6 @@ ShibbolethWebView::ShibbolethWebView(Account* account, QWidget* parent)
ShibbolethWebView::~ShibbolethWebView()
{
slotLoadFinished();
}
void ShibbolethWebView::onNewCookiesForUrl (const QList<QNetworkCookie>& cookieList, const QUrl& url)

View File

@ -46,7 +46,7 @@ Q_SIGNALS:
private Q_SLOTS:
void onNewCookiesForUrl(const QList<QNetworkCookie>& cookieList, const QUrl& url);
void slotLoadStarted();
void slotLoadFinished(bool success = true);
void slotLoadFinished(bool success);
void slotHandleAuthentication(QNetworkReply*,QAuthenticator*);
protected: