diff options
author | Andreas Hartmetz <ahartmetz@gmail.com> | 2010-12-03 20:37:37 +0100 |
---|---|---|
committer | Andreas Hartmetz <ahartmetz@gmail.com> | 2010-12-03 20:37:37 +0100 |
commit | 62772c380295f9b03dccea114e20dac585b35b34 (patch) | |
tree | 21669cc109cdc2d6859457e6e009f00f88b4cdb5 /src/webview.cpp | |
parent | Show and hide the add-tab button automatically (diff) | |
download | rekonq-62772c380295f9b03dccea114e20dac585b35b34.tar.xz |
Initialize previously uninitialized member variable
Diffstat (limited to 'src/webview.cpp')
-rw-r--r-- | src/webview.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 7664805f..e90b8da5 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -74,6 +74,7 @@ WebView::WebView(QWidget* parent) , m_smoothScrollTimer(new QTimer(this)) , m_smoothScrolling(false) , m_dy(0) + , m_smoothScrollSteps(0) { WebPage *page = new WebPage(this); setPage(page); |