47 """ |
47 """ |
48 Constructor |
48 Constructor |
49 |
49 |
50 @param parent reference to the parent widget (QWidget) |
50 @param parent reference to the parent widget (QWidget) |
51 """ |
51 """ |
52 super(IrcNetworkWidget, self).__init__(parent) |
52 super().__init__(parent) |
53 self.setupUi(self) |
53 self.setupUi(self) |
54 |
54 |
55 self.connectButton.setIcon(UI.PixmapCache.getIcon("ircConnect")) |
55 self.connectButton.setIcon(UI.PixmapCache.getIcon("ircConnect")) |
56 self.editButton.setIcon(UI.PixmapCache.getIcon("ircConfigure")) |
56 self.editButton.setIcon(UI.PixmapCache.getIcon("ircConfigure")) |
57 self.joinButton.setIcon(UI.PixmapCache.getIcon("ircJoinChannel")) |
57 self.joinButton.setIcon(UI.PixmapCache.getIcon("ircJoinChannel")) |