summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2015-07-13 13:18:19 (GMT)
committerTobias Markmann <tm@ayena.de>2015-07-14 08:14:37 (GMT)
commit0cfa934c4c0323cc9e8e1431f25a05977e3670a6 (patch)
tree5c10d9147e5931a16bfc771cff7b6797d9b58c54 /Swift/QtUI/UserSearch/UserSearchDelegate.h
parentcb8a1c43ff96c1d82c8ba1d30e210135303bbe26 (diff)
downloadswift-0cfa934c4c0323cc9e8e1431f25a05977e3670a6.zip
swift-0cfa934c4c0323cc9e8e1431f25a05977e3670a6.tar.bz2
Fix memory leak in QtUserSearchWindow
The delegate was not correctly freed and was leaking across login/logout sessions. Setting the parent of the delegate during initialization, so it will be freed by Qt when the QtUserSearchWindow is freed. Delegated the deallocation to Qt, because it has to be freed after the widget that uses the delegate is freed. Test-Information: The leak was reported by Valgrind. Verified with Valgrind that this commit fixes the leak and is not reported anymore. Change-Id: Ib48d2628577433bce82103b3f14cbd11d733b7ac
Diffstat (limited to 'Swift/QtUI/UserSearch/UserSearchDelegate.h')
-rw-r--r--Swift/QtUI/UserSearch/UserSearchDelegate.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/Swift/QtUI/UserSearch/UserSearchDelegate.h b/Swift/QtUI/UserSearch/UserSearchDelegate.h
index 41c20dc..92fa0e8 100644
--- a/Swift/QtUI/UserSearch/UserSearchDelegate.h
+++ b/Swift/QtUI/UserSearch/UserSearchDelegate.h
@@ -1,22 +1,25 @@
/*
- * Copyright (c) 2010 Isode Limited.
+ * Copyright (c) 2010-2015 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
-#include <QStyledItemDelegate>
#include <QPainter>
#include <QStyleOptionViewItem>
+#include <QStyledItemDelegate>
#include <Swift/QtUI/Roster/DelegateCommons.h>
namespace Swift {
class UserSearchDelegate : public QStyledItemDelegate {
+ Q_OBJECT
+
public:
- UserSearchDelegate();
- ~UserSearchDelegate();
+ UserSearchDelegate(QObject* parent = 0);
+ virtual ~UserSearchDelegate();
+
void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const;
QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index ) const;
private: