summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/packagelistview.cpp
Unidiff
Diffstat (limited to 'noncore/unsupported/oipkg/packagelistview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/packagelistview.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/unsupported/oipkg/packagelistview.cpp b/noncore/unsupported/oipkg/packagelistview.cpp
index 5137c64..b6b520b 100644
--- a/noncore/unsupported/oipkg/packagelistview.cpp
+++ b/noncore/unsupported/oipkg/packagelistview.cpp
@@ -107,26 +107,27 @@ void PackageListView::display()
107 while ( list.current() ) { 107 while ( list.current() ) {
108 packlist = list.current(); 108 packlist = list.current();
109 rootItem = rootItems.find( list.currentKey() ); 109 rootItem = rootItems.find( list.currentKey() );
110 //rootItem->clear(); 110 //rootItem->clear();
111 it=rootItem->firstChild(); 111 it=rootItem->firstChild();
112 while ( it ) 112 while ( it )
113 { 113 {
114 itdel = it; 114 itdel = it;
115 it = it->nextSibling(); 115 it = it->nextSibling();
116 delete itdel; 116 delete itdel;
117 } 117 }
118 pack = packlist->first(); 118 pack = packlist->first();
119 while( pack ) 119 while( pack )
120 { 120 {
121 item = new PackageListItem( rootItem, pack, settings ); 121 item = new PackageListItem( rootItem, pack, settings );
122 pack = packlist->next(); 122 pack = packlist->next();
123 } 123 }
124 ++list; 124 ++list;
125 } 125 }
126} 126}
127 127
128void PackageListView::addList( QString n, PackageList* pl) 128void PackageListView::addList( QString n, PackageList* pl)
129{ 129{
130 PackageLists.insert(n, pl); 130 PackageLists.insert(n, pl);
131 rootItems.insert(n, new QCheckListItem(this,n)); 131 QCheckListItem *item = new QCheckListItem(this,n);
132 rootItems.insert(n, item);
132} 133}