diff -r 1358e9d67a1c -r 88261c96484b eric6/Network/IRC/IrcWidget.py --- a/eric6/Network/IRC/IrcWidget.py Sun Apr 12 18:46:08 2020 +0200 +++ b/eric6/Network/IRC/IrcWidget.py Sun Apr 12 19:07:49 2020 +0200 @@ -61,7 +61,7 @@ self.__leaveButton = QToolButton(self) self.__leaveButton.setIcon( - UI.PixmapCache.getIcon("ircCloseChannel.png")) + UI.PixmapCache.getIcon("ircCloseChannel")) self.__leaveButton.setToolTip( self.tr("Press to leave the current channel")) self.__leaveButton.clicked.connect(self.__leaveChannel) @@ -113,7 +113,7 @@ self.__prefixRe = re.compile(r""".*\sPREFIX=\((.*)\)([^ ]+).*""") self.__chanTypesRe = re.compile(r""".*\sCHANTYPES=([^ ]+).*""") - ircPic = UI.PixmapCache.getPixmap("irc128.png") + ircPic = UI.PixmapCache.getPixmap("irc128") self.__emptyLabel = QLabel() self.__emptyLabel.setPixmap(ircPic) self.__emptyLabel.setAlignment(Qt.AlignVCenter | Qt.AlignHCenter)