/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 commands.py

  • Committer: David Planella
  • Date: 2010-08-21 09:38:06 UTC
  • mto: This revision was merged to the branch mainline in revision 719.
  • Revision ID: david.planella@ubuntu.com-20100821093806-9u7cq5gcaml6k2ln
Added the rest of files necessary for i18n support in the build system

Show diffs side-by-side

added added

removed removed

Lines of Context:
375
375
        dialog.run()
376
376
 
377
377
 
378
 
class cmd_ginfo(Command):
379
 
    """ GTK+ info dialog
380
 
    
381
 
    """
382
 
    def run(self):
383
 
        from bzrlib import workingtree
384
 
        from bzrlib.plugins.gtk.olive.info import InfoDialog
385
 
        wt = workingtree.WorkingTree.open_containing('.')[0]
386
 
        info = InfoDialog(wt.branch)
387
 
        info.display()
388
 
        info.window.run()
389
 
 
390
 
 
391
378
class cmd_gmerge(Command):
392
379
    """ GTK+ merge dialog
393
380