~ubuntu-branches/ubuntu/gutsy/kiwi/gutsy

« back to all changes in this revision

Viewing changes to kiwi/ui/dialogs.py

  • Committer: Bazaar Package Importer
  • Author(s): Aron Sisak
  • Date: 2007-07-19 20:32:02 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070719203202-o7xcw7ff8j2espzw
Tags: 1.9.16-0ubuntu1
* New upstream release:
  - Polish translation (Jarek Zgoda)
  - ObjectList updates
  - Support for currency marker in KiwiLabel (#3389, Ronaldo Maia)
  - Improvements to glade-3 plugin (Ali, #3461)
  - ObjectList::row-expanded signal (Ali, #3460)
  - Kiwi completion fixes/workaround (Ali, #2901)
  - Tasklet updates (Gustavo)
  - ValueUnset and KiwiEntry  (Ali, #3408)
  - Gaxml support in loader
  - Gazpacho support for ObjectList (Ali, #3389)
  - Rml translation support
  - SQLObject full text index support

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
        self.set_title(" ")
70
70
        self.set_skip_taskbar_hint(True)
71
71
        self.vbox.set_spacing(14)
72
 
        self.get_accessible().set_role(atk.ROLE_ALERT)
 
72
 
 
73
        # It seems like get_accessible is not available on windows, go figure
 
74
        if hasattr(self, 'get_accessible'):
 
75
            self.get_accessible().set_role(atk.ROLE_ALERT)
73
76
 
74
77
        self._primary_label = gtk.Label()
75
78
        self._secondary_label = gtk.Label()