diff -r 3ede487187f2 -r fab36645aa7d src/eric7/Network/IRC/IrcChannelWidget.py --- a/src/eric7/Network/IRC/IrcChannelWidget.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Network/IRC/IrcChannelWidget.py Mon Apr 22 18:23:20 2024 +0200 @@ -1714,20 +1714,20 @@ ) self.__usersMenu.popup(self.usersList.mapToGlobal(pos)) - def hideEvent(self, evt): + def hideEvent(self, _evt): """ Protected method handling hide events. - @param evt reference to the hide event + @param _evt reference to the hide event (unused) @type QHideEvent """ self.__hidden = True - def showEvent(self, evt): + def showEvent(self, _evt): """ Protected method handling show events. - @param evt reference to the show event + @param _evt reference to the show event (unused) @type QShowEvent """ self.__hidden = False