45 button.feed = feed |
45 button.feed = feed |
46 label = QLabel(self) |
46 label = QLabel(self) |
47 label.setText(feed[0]) |
47 label.setText(feed[0]) |
48 self.feedsLayout.addWidget(label, row, 0) |
48 self.feedsLayout.addWidget(label, row, 0) |
49 self.feedsLayout.addWidget(button, row, 1) |
49 self.feedsLayout.addWidget(button, row, 1) |
50 button.clicked[()].connect(self.__addFeed) |
50 button.clicked.connect(self.__addFeed) |
51 |
51 |
52 def __addFeed(self): |
52 def __addFeed(self): |
53 """ |
53 """ |
54 Private slot to add a RSS feed. |
54 Private slot to add a RSS feed. |
55 """ |
55 """ |