Helpviewer/HelpWindow.py

changeset 3201
0f115f6db6cb
parent 3190
a9a94491c4fd
child 3236
92e15257b24e
equal deleted inserted replaced
3200:83bde5e6f146 3201:0f115f6db6cb
2129 """ 2129 """
2130 Private slot to show the bookmarks dialog. 2130 Private slot to show the bookmarks dialog.
2131 """ 2131 """
2132 from .Bookmarks.BookmarksDialog import BookmarksDialog 2132 from .Bookmarks.BookmarksDialog import BookmarksDialog
2133 self.__bookmarksDialog = BookmarksDialog(self) 2133 self.__bookmarksDialog = BookmarksDialog(self)
2134 self.__bookmarksDialog.setAttribute(Qt.WA_DeleteOnClose)
2135 self.__bookmarksDialog.openUrl.connect(self.openUrl) 2134 self.__bookmarksDialog.openUrl.connect(self.openUrl)
2136 self.__bookmarksDialog.newUrl.connect(self.openUrlNewTab) 2135 self.__bookmarksDialog.newUrl.connect(self.openUrlNewTab)
2137 self.__bookmarksDialog.show() 2136 self.__bookmarksDialog.show()
2138 2137
2139 def bookmarkAll(self): 2138 def bookmarkAll(self):
3457 """ 3456 """
3458 Private slot to show the site info dialog. 3457 Private slot to show the site info dialog.
3459 """ 3458 """
3460 from .SiteInfo.SiteInfoDialog import SiteInfoDialog 3459 from .SiteInfo.SiteInfoDialog import SiteInfoDialog
3461 self.__siteinfoDialog = SiteInfoDialog(self.currentBrowser(), self) 3460 self.__siteinfoDialog = SiteInfoDialog(self.currentBrowser(), self)
3462 self.__siteinfoDialog.setAttribute(Qt.WA_DeleteOnClose)
3463 self.__siteinfoDialog.show() 3461 self.__siteinfoDialog.show()
3464 3462
3465 @classmethod 3463 @classmethod
3466 def userAgentsManager(cls): 3464 def userAgentsManager(cls):
3467 """ 3465 """

eric ide

mercurial