summaryrefslogtreecommitdiff
path: root/src/webtab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/webtab.cpp')
-rw-r--r--src/webtab.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/webtab.cpp b/src/webtab.cpp
index cce09953..c525ac00 100644
--- a/src/webtab.cpp
+++ b/src/webtab.cpp
@@ -33,6 +33,7 @@
#include "rekonq.h"
// Local Includes
+#include "urlbar.h"
#include "previewselectorbar.h"
#include "rsswidget.h"
#include "walletbar.h"
@@ -48,7 +49,8 @@
WebTab::WebTab(QWidget *parent)
: QWidget(parent)
, _view(new WebView(this))
- , m_progress(0)
+ , _bar(new UrlBar(this))
+ , _progress(0)
{
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
@@ -110,14 +112,14 @@ KUrl WebTab::url()
void WebTab::updateProgress(int p)
{
- m_progress = p;
+ _progress = p;
emit loadProgressing();
}
void WebTab::loadFinished(bool)
{
- m_progress = 0;
+ _progress = 0;
}