Advertisement
Guest User

Untitled

a guest
May 1st, 2014
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1.  
  2.     class Ui_AlertDialog(QtGui.QDialog):
  3.         def __init__(self, parent):
  4.             super(Ui_AlertDialog, self).__init__(parent)
  5.             # Set up here
  6.      
  7.     class AlertForm(Ui_AlertDialog):
  8.         def __init__(self, plugin):
  9.             super(AlertForm, self).__init__(Registry().get('main_window'))
  10.             # ....
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement