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