src/eric7/WebBrowser/CookieJar/CookiesConfigurationDialog.py

branch
eric7
changeset 11006
a671918232f3
parent 10485
287a3ae95e00
child 11090
f5f5f5803935
equal deleted inserted replaced
11005:b918c6c2736b 11006:a671918232f3
81 """ 81 """
82 Private slot to show the cookies exceptions dialog. 82 Private slot to show the cookies exceptions dialog.
83 """ 83 """
84 from .CookiesExceptionsDialog import CookiesExceptionsDialog 84 from .CookiesExceptionsDialog import CookiesExceptionsDialog
85 85
86 dlg = CookiesExceptionsDialog(self.__mw.cookieJar()) 86 dlg = CookiesExceptionsDialog(self.__mw.cookieJar(), parent=self)
87 dlg.exec() 87 dlg.exec()
88 88
89 @pyqtSlot() 89 @pyqtSlot()
90 def on_cookiesButton_clicked(self): 90 def on_cookiesButton_clicked(self):
91 """ 91 """
92 Private slot to show the cookies dialog. 92 Private slot to show the cookies dialog.
93 """ 93 """
94 from .CookiesDialog import CookiesDialog 94 from .CookiesDialog import CookiesDialog
95 95
96 dlg = CookiesDialog(self.__mw.cookieJar()) 96 dlg = CookiesDialog(self.__mw.cookieJar(), parent=self)
97 dlg.exec() 97 dlg.exec()

eric ide

mercurial