summaryrefslogtreecommitdiff
path: root/core/pim/osearch/olistviewitem.cpp
Unidiff
Diffstat (limited to 'core/pim/osearch/olistviewitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/olistviewitem.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/pim/osearch/olistviewitem.cpp b/core/pim/osearch/olistviewitem.cpp
index 29c5942..2d67559 100644
--- a/core/pim/osearch/olistviewitem.cpp
+++ b/core/pim/osearch/olistviewitem.cpp
@@ -25,6 +25,17 @@ OListViewItem::OListViewItem(QListView *parent, QString name)
25} 25}
26 26
27OListViewItem::~OListViewItem() 27OListViewItem::~OListViewItem()
28{ 28{
29} 29}
30 30
31void OListViewItem::clearList()
32{
33 QListViewItem *item = firstChild();
34 QListViewItem *toDel;
35 while ( item != 0 ) {
36 toDel = item;
37 item = item->nextSibling();
38 delete toDel;
39 }
40}
41