/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: Mateusz Korniak
  • Date: 2007-08-24 13:40:48 UTC
  • mto: This revision was merged to the branch mainline in revision 267.
  • Revision ID: matkor@laptop-hp-20070824134048-jgsqof1fb8iud8i8
Fixed interface to push.PushDialog

Show diffs side-by-side

added added

removed removed

Lines of Context:
581
581
    
582
582
    def on_menuitem_branch_push_activate(self, widget):
583
583
        """ Branch/Push... menu handler. """
584
 
        push = PushDialog(self.wt.branch, self.window)
 
584
        push = PushDialog(repository=None,revid=None,branch=self.wt.branch, parent=self.window)
585
585
        response = push.run()
586
586
        if response != gtk.RESPONSE_NONE:
587
587
            push.destroy()