src/eric7/WebBrowser/VirusTotal/VirusTotalWhoisDialog.py

branch
eric7
changeset 9413
80c06d472826
parent 9221
bf71ee032bb4
child 9473
3f23dbf37dbe
equal deleted inserted replaced
9412:45e7bb09c120 9413:80c06d472826
9 9
10 from PyQt6.QtWidgets import QDialog 10 from PyQt6.QtWidgets import QDialog
11 11
12 from .Ui_VirusTotalWhoisDialog import Ui_VirusTotalWhoisDialog 12 from .Ui_VirusTotalWhoisDialog import Ui_VirusTotalWhoisDialog
13 13
14 import UI.PixmapCache 14 from eric7.EricGui import EricPixmapCache
15 15
16 16
17 class VirusTotalWhoisDialog(QDialog, Ui_VirusTotalWhoisDialog): 17 class VirusTotalWhoisDialog(QDialog, Ui_VirusTotalWhoisDialog):
18 """ 18 """
19 Class implementing a dialog to show the 'whois' information. 19 Class implementing a dialog to show the 'whois' information.
34 self.setupUi(self) 34 self.setupUi(self)
35 35
36 self.headerLabel.setText( 36 self.headerLabel.setText(
37 self.tr("<b>Whois information for domain {0}</b>").format(domain) 37 self.tr("<b>Whois information for domain {0}</b>").format(domain)
38 ) 38 )
39 self.headerPixmap.setPixmap(UI.PixmapCache.getPixmap("virustotal")) 39 self.headerPixmap.setPixmap(EricPixmapCache.getPixmap("virustotal"))
40 self.whoisEdit.setPlainText(whois) 40 self.whoisEdit.setPlainText(whois)

eric ide

mercurial