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() |