/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to olive/__init__.py

  • Committer: Jasper Groenewegen
  • Date: 2008-07-19 23:16:51 UTC
  • mto: This revision was merged to the branch mainline in revision 559.
  • Revision ID: colbrac@xs4all.nl-20080719231651-dyw8u6w3il2ocxr4
Replace OliveInfo with gladeless InfoDialog
Huge speed improvement by introduction of iterations over lists

Show diffs side-by-side

added added

removed removed

Lines of Context:
783
783
    
784
784
    def on_menuitem_stats_infos_activate(self, widget):
785
785
        """ Statistics/Informations... menu handler. """
786
 
        from info import OliveInfo
 
786
        from bzrlib.plugins.gtk.olive.info import InfoDialog
787
787
        if self.remote:
788
 
            info = OliveInfo(self.remote_branch)
 
788
            info = InfoDialog(self.remote_branch)
789
789
        else:
790
 
            info = OliveInfo(self.wt.branch)
 
790
            info = InfoDialog(self.wt.branch)
791
791
        info.display()
792
792
    
793
793
    def on_menuitem_stats_log_activate(self, widget):