diff options
Diffstat (limited to 'src/webview.cpp')
-rw-r--r-- | src/webview.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 96c3cef5..1c9440f4 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -55,8 +55,6 @@ #include <QtGui/QAction> - - WebView::WebView(QWidget* parent) : QWebView(parent) , m_page(new WebPage(this)) @@ -86,11 +84,13 @@ KUrl WebView::url() const return KUrl(QWebView::url()); } + int WebView::progress() { return m_progress; } + QString WebView::lastStatusBarText() const { return m_statusBarText; @@ -338,6 +338,7 @@ void WebView::slotUpdateProgress(int p) m_progress=p; } + void WebView::slotLoadFinished(bool) { m_progress=0; |