Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. class MainWindow(QDialog, mainForm.Ui_Form):
  2.     def __init__(self, parent=None):
  3.         super(MainWindow, self).__init__(parent)
  4.         self.setupUi(self)
  5.        
  6.         #Acciones
  7.         self.sponsorsVisitarBtn.clicked.connect(self.visitar)
  8.        
  9.     def visitar(self):
  10.         webbrowser.open(self.sponsorUrlEdit.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement