/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-20 16:29:18 UTC
  • mfrom: (554.1.2 improved-infodialog)
  • Revision ID: colbrac@xs4all.nl-20080720162918-9eqpu9i6m9sx7d3w
Merge replacement of Olive info dialog with glade-less version

Show diffs side-by-side

added added

removed removed

Lines of Context:
679
679
    
680
680
    def on_menuitem_stats_infos_activate(self, widget):
681
681
        """ Statistics/Informations... menu handler. """
682
 
        from info import OliveInfo
 
682
        from bzrlib.plugins.gtk.olive.info import InfoDialog
683
683
        if self.remote:
684
 
            info = OliveInfo(self.remote_branch)
 
684
            info = InfoDialog(self.remote_branch)
685
685
        else:
686
 
            info = OliveInfo(self.wt.branch)
 
686
            info = InfoDialog(self.wt.branch)
687
687
        info.display()
688
688
    
689
689
    def on_menuitem_stats_log_activate(self, widget):