eric6/WebBrowser/CookieJar/CookiesConfigurationDialog.py

changeset 7759
51aa6c6b66f7
parent 7360
9190402e4505
child 7781
607a6098cb44
equal deleted inserted replaced
7758:dd54d33d21d2 7759:51aa6c6b66f7
83 """ 83 """
84 Private slot to show the cookies exceptions dialog. 84 Private slot to show the cookies exceptions dialog.
85 """ 85 """
86 from .CookiesExceptionsDialog import CookiesExceptionsDialog 86 from .CookiesExceptionsDialog import CookiesExceptionsDialog
87 dlg = CookiesExceptionsDialog(self.__mw.cookieJar()) 87 dlg = CookiesExceptionsDialog(self.__mw.cookieJar())
88 dlg.exec_() 88 dlg.exec()
89 89
90 @pyqtSlot() 90 @pyqtSlot()
91 def on_cookiesButton_clicked(self): 91 def on_cookiesButton_clicked(self):
92 """ 92 """
93 Private slot to show the cookies dialog. 93 Private slot to show the cookies dialog.
94 """ 94 """
95 from .CookiesDialog import CookiesDialog 95 from .CookiesDialog import CookiesDialog
96 dlg = CookiesDialog(self.__mw.cookieJar()) 96 dlg = CookiesDialog(self.__mw.cookieJar())
97 dlg.exec_() 97 dlg.exec()

eric ide

mercurial