diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-08-22 21:22:46 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-08-22 21:22:46 +0200 |
commit | bb0be61558032932ca1775a5068a3e331f5be292 (patch) | |
tree | 80796ecc3ad6c38af64872cd09b48088b5ddc27f /src/webview.cpp | |
parent | Removed unuseful stackedurlbar.cpp file (diff) | |
download | rekonq-bb0be61558032932ca1775a5068a3e331f5be292.tar.xz |
Some stupid fixes on style, spaces and some comments added
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; |