Replaced wrong signal name from wrong class (probably qt api change). Now the widget works again.

CCMAIL: aseigo@kde.org


svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=823375
This commit is contained in:
William Viana Soares 2008-06-23 07:50:33 +00:00
parent 0a89bbc5ea
commit f8aa360b28

View File

@ -101,7 +101,7 @@ void WebContent::setPage(QWebPage *page)
if (d->page) {
connect(d->page, SIGNAL(loadProgress(int)), this, SIGNAL(loadProgress(int)));
connect(d->page->mainFrame(), SIGNAL(loadDone(bool)), this, SLOT(loadingComplete(bool)));
connect(d->page, SIGNAL(loadFinished(bool)), this, SLOT(loadingComplete(bool)));
}
}