Changeset 4

Show
Ignore:
Timestamp:
11-09-2008 17:19:08 (5 years ago)
Author:
pcabido
Message:

update

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/CreateKit.py

    r3 r4  
    7171        self.treeStore = gtk.TreeStore(gobject.TYPE_BOOLEAN, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING) 
    7272         
    73         time.sleep(1) 
    7473        cache = apt_pkg.GetCache(progress.TextProgress()) 
    7574        records = apt_pkg.GetPkgRecords(cache) 
     
    8887                        continue 
    8988                    pkgList.append((None,(None, pkg.Name, pkgInfo.VerStr, records.ShortDesc))) 
    90                      
    91                     #self.pbar.set_fraction(util.pbarFraction(count, cache.PackageCount)) 
    92                     #print self.pbar.get_fraction() 
    93                      
    94                     #print (None, pkg.Name, pkgInfo.VerStr, records.ShortDesc, packFile.IndexType)               
     89                    #self.pbar.set_fraction(util.pbarFraction(count, cache.PackageCount))               
    9590         
    9691        pkgList.sort() 
    9792        for elm in pkgList: 
    9893            self.treeStore.append(elm[0], (elm[1][0], elm[1][1], elm[1][2], elm[1][3])) 
    99          
    100         time.sleep(1) 
    10194         
    10295        self.rendererText = gtk.CellRendererText()