diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-05-04 09:19:16 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-05-04 09:19:16 +0200 |
commit | 7ea1b6add7ebef4d475801e15e89992e734617c1 (patch) | |
tree | a083886be1493a1616ef380e8ccad40e09e49e1f /src/findbar.cpp | |
parent | Fix conflicts (diff) | |
download | rekonq-7ea1b6add7ebef4d475801e15e89992e734617c1.tar.xz |
Memory leaks fixes
first bunch
Diffstat (limited to 'src/findbar.cpp')
-rw-r--r-- | src/findbar.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/findbar.cpp b/src/findbar.cpp index db97f87d..f89cde60 100644 --- a/src/findbar.cpp +++ b/src/findbar.cpp @@ -119,6 +119,10 @@ FindBar::FindBar(QWidget *parent) FindBar::~FindBar() { + delete m_lineEdit; + delete m_hideTimer; + delete m_matchCase; + delete m_highlightAll; } |