/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: Jelmer Vernooij
  • Date: 2006-09-06 00:23:46 UTC
  • mto: (0.8.83 merge)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: jelmer@samba.org-20060906002346-73aa11b52d4d7b96
Load plugins on startup.

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
    def _message_dialog(self, type, primary, secondary):
46
46
        """ Display a given type of MessageDialog with the given message.