1739 |
1739 |
1740 def __about(self): |
1740 def __about(self): |
1741 """ |
1741 """ |
1742 Private slot to show the about information. |
1742 Private slot to show the about information. |
1743 """ |
1743 """ |
1744 QMessageBox.about(self, self.trUtf8("Eric Web Browser"), self.trUtf8( |
1744 E5MessageBox.about(self, self.trUtf8("Eric Web Browser"), self.trUtf8( |
1745 """<h3>About Eric Web Browser</h3>""" |
1745 """<h3>About Eric Web Browser</h3>""" |
1746 """<p>The Eric Web Browser is a combined help file and HTML browser.</p>""" |
1746 """<p>The Eric Web Browser is a combined help file and HTML browser.</p>""" |
1747 )) |
1747 )) |
1748 |
1748 |
1749 def __aboutQt(self): |
1749 def __aboutQt(self): |
1750 """ |
1750 """ |
1751 Private slot to show info about Qt. |
1751 Private slot to show info about Qt. |
1752 """ |
1752 """ |
1753 QMessageBox.aboutQt(self, self.trUtf8("Eric Web Browser")) |
1753 E5MessageBox.aboutQt(self, self.trUtf8("Eric Web Browser")) |
1754 |
1754 |
1755 def __setBackwardAvailable(self, b): |
1755 def __setBackwardAvailable(self, b): |
1756 """ |
1756 """ |
1757 Private slot called when backward references are available. |
1757 Private slot called when backward references are available. |
1758 |
1758 |