diff options
Diffstat (limited to 'src/webtab.cpp')
-rw-r--r-- | src/webtab.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/webtab.cpp b/src/webtab.cpp index 1305747e..67a5f3b7 100644 --- a/src/webtab.cpp +++ b/src/webtab.cpp @@ -54,6 +54,7 @@ // Qt Includes #include <QtGui/QVBoxLayout> + WebTab::WebTab(QWidget *parent) : QWidget(parent) , m_webView(new WebView(this)) @@ -169,6 +170,7 @@ void WebTab::createPreviewSelectorBar(int index) connect(page()->mainFrame(), SIGNAL(urlChanged(QUrl)), m_previewSelectorBar.data(), SLOT(verifyUrl()), Qt::UniqueConnection); } + void WebTab::insertBar(NotificationBar *bar) { qobject_cast<QVBoxLayout *>(layout())->insertWidget(0, bar); |