105 from .CookiesExceptionsDialog import CookiesExceptionsDialog |
105 from .CookiesExceptionsDialog import CookiesExceptionsDialog |
106 |
106 |
107 domain = current.text(0) |
107 domain = current.text(0) |
108 dlg = CookiesExceptionsDialog(self.__cookieJar, self) |
108 dlg = CookiesExceptionsDialog(self.__cookieJar, self) |
109 dlg.setDomainName(domain) |
109 dlg.setDomainName(domain) |
110 dlg.exec_() |
110 dlg.exec() |
111 |
111 |
112 @pyqtSlot() |
112 @pyqtSlot() |
113 def on_removeButton_clicked(self): |
113 def on_removeButton_clicked(self): |
114 """ |
114 """ |
115 Private slot to remove the selected cookie(s). |
115 Private slot to remove the selected cookie(s). |