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

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-09-27 19:11:59 UTC
  • mfrom: (0.8.90 merge)
  • mto: (93.1.1 win32.bialix)
  • mto: This revision was merged to the branch mainline in revision 103.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060927191159-cc4e54f613575779
Merge all changes. Release 0.11.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
        
34
34
    def about(self):
35
35
        """ Display the AboutDialog. """
36
 
        import olive.frontend.gtk
 
36
        import olive
37
37
 
38
38
        # Load AboutDialog description
39
39
        dglade = gtk.glade.XML(self.gladefile, 'aboutdialog')
40
40
        dialog = dglade.get_widget('aboutdialog')
41
41
 
42
42
        # Set version
43
 
        dialog.set_version(olive.frontend.gtk.__version__)
 
43
        dialog.set_version(olive.__version__)
44
44
        
45
45
        # Destroy the dialog
46
46
        if dialog.run() == gtk.RESPONSE_CANCEL: