~ubuntu-core-dev/synaptic/ubuntu

« back to all changes in this revision

Viewing changes to gtk/rgpkgdetails.cc

  • Committer: mvo
  • Date: 2005-02-21 04:23:27 UTC
  • Revision ID: gustavo@niemeyer.net-20050221042327-a9b5ee8ac7b0cb68
* gtk/rgpkgdetails.cc, rgmainwindow.cc, rgpkgdetails.h:
  - DepInformation is no longer nested into RPackage because SWIG does
    not support nesting
* common/rswig.{cc,h}: 
  - interface classes for swig so that extending for the progress 
    is possible in python
* common/rpackagecache.{cc,h}, rpackagelister.{cc,h}: 
  - support non-locking
* common/rpackage.{cc,h}: DepInformation is no longer nested

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
}
49
49
 
50
50
vector<string> 
51
 
RGPkgDetailsWindow::formatDepInformation(vector<RPackage::DepInformation> deps)
 
51
RGPkgDetailsWindow::formatDepInformation(vector<DepInformation> deps)
52
52
{
53
53
   vector<string> depStrings;
54
54
   string depStr;
126
126
   me->setTextView("text_descr", descr.c_str(), true);
127
127
 
128
128
   // build dependency lists
129
 
   vector<RPackage::DepInformation> deps;
 
129
   vector<DepInformation> deps;
130
130
   deps = pkg->enumDeps();
131
131
   me->setTreeList("treeview_deplist", formatDepInformation(deps), true);
132
132