E5Network/E5SslCertificatesDialog.py

changeset 2361
fe8bccb78a8d
parent 2359
ef81d2d0a031
child 2363
d5d006a038a4
--- a/E5Network/E5SslCertificatesDialog.py	Sat Jan 19 16:59:23 2013 +0100
+++ b/E5Network/E5SslCertificatesDialog.py	Sat Jan 19 17:24:35 2013 +0100
@@ -26,6 +26,7 @@
 
 import Preferences
 import Utilities
+import UI.PixmapCache
 
 
 class E5SslCertificatesDialog(QDialog, Ui_E5SslCertificatesDialog):
@@ -43,6 +44,16 @@
         super().__init__(parent)
         self.setupUi(self)
         
+        self.serversViewButton.setIcon(UI.PixmapCache.getIcon("certificates.png"))
+        self.serversDeleteButton.setIcon(UI.PixmapCache.getIcon("certificateDelete.png"))
+        self.serversExportButton.setIcon(UI.PixmapCache.getIcon("certificateExport.png"))
+        self.serversImportButton.setIcon(UI.PixmapCache.getIcon("certificateImport.png"))
+        
+        self.caViewButton.setIcon(UI.PixmapCache.getIcon("certificates.png"))
+        self.caDeleteButton.setIcon(UI.PixmapCache.getIcon("certificateDelete.png"))
+        self.caExportButton.setIcon(UI.PixmapCache.getIcon("certificateExport.png"))
+        self.caImportButton.setIcon(UI.PixmapCache.getIcon("certificateImport.png"))
+        
         self.__populateServerCertificatesTree()
         self.__populateCaCertificatesTree()
     

eric ide

mercurial