summaryrefslogtreecommitdiff
path: root/src/webview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-07-29 00:22:14 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-07-29 00:22:14 +0200
commitd64b60a884452202d8d7dd5e4a13fcdcedbb6265 (patch)
treea1e04a251645179b11fdde71f5a1ecf70e906b18 /src/webview.h
parentMerge branch 'PrivateColor' (diff)
downloadrekonq-d64b60a884452202d8d7dd5e4a13fcdcedbb6265.tar.xz
Simplifying a bit web load progress process structure
Diffstat (limited to 'src/webview.h')
-rw-r--r--src/webview.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/webview.h b/src/webview.h
index 08d597db..9630162a 100644
--- a/src/webview.h
+++ b/src/webview.h
@@ -43,7 +43,6 @@ public:
WebPage *page();
KUrl url() const;
QString lastStatusBarText() const;
- int progress() const;
signals:
// switching tabs
@@ -61,15 +60,12 @@ protected:
void wheelEvent(QWheelEvent *event);
private slots:
- void setProgress(int progress);
- void loadFinished();
void setStatusBarText(const QString &string);
void slotSearch();
private:
WebPage *m_page;
-
- int m_progress;
+
QString m_statusBarText;
};