--- a/eric6/SqlBrowser/SqlBrowser.py Sun Apr 12 18:46:08 2020 +0200 +++ b/eric6/SqlBrowser/SqlBrowser.py Sun Apr 12 19:07:49 2020 +0200 @@ -42,7 +42,7 @@ connections = [] self.setWindowTitle(self.tr("SQL Browser")) - self.setWindowIcon(UI.PixmapCache.getIcon("eric.png")) + self.setWindowIcon(UI.PixmapCache.getIcon("eric")) self.setStyle(Preferences.getUI("Style"), Preferences.getUI("StyleSheet")) @@ -101,7 +101,7 @@ self.addConnectionAct = E5Action( self.tr('Add Connection'), - UI.PixmapCache.getIcon("databaseConnection.png"), + UI.PixmapCache.getIcon("databaseConnection"), self.tr('Add &Connection...'), 0, 0, self, 'sql_file_add_connection') self.addConnectionAct.setStatusTip(self.tr( @@ -117,7 +117,7 @@ self.exitAct = E5Action( self.tr('Quit'), - UI.PixmapCache.getIcon("exit.png"), + UI.PixmapCache.getIcon("exit"), self.tr('&Quit'), QKeySequence(self.tr("Ctrl+Q", "File|Quit")), 0, self, 'sql_file_quit')