home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / lib / python2.4 / site-packages / SoftwareProperties / utils.pyc (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2006-08-31  |  635 b   |  14 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. import gtk
  5.  
  6. def dialog_error(parent, primary, secondary):
  7.     p = '<span weight="bold" size="larger">%s</span>' % primary
  8.     dialog = gtk.MessageDialog(parent, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, '')
  9.     dialog.set_markup(p)
  10.     dialog.format_secondary_text(secondary)
  11.     dialog.run()
  12.     dialog.hide()
  13.  
  14.