87 self.iconsListWidget.addItem( |
87 self.iconsListWidget.addItem( |
88 QListWidgetItem(EricPixmapCache.getIcon(iconName), labelText) |
88 QListWidgetItem(EricPixmapCache.getIcon(iconName), labelText) |
89 ) |
89 ) |
90 |
90 |
91 @pyqtSlot(str) |
91 @pyqtSlot(str) |
92 def on_styleIconsPathPicker_textChanged(self, txt): |
92 def on_styleIconsPathPicker_textChanged(self, _txt): |
93 """ |
93 """ |
94 Private slot handling a change of the style icons path. |
94 Private slot handling a change of the style icons path. |
95 |
95 |
96 @param txt name of the style icons directory |
96 @param _txt name of the style icons directory (unused) |
97 @type str |
97 @type str |
98 """ |
98 """ |
99 self.processEditor(self.__lastEditor) |
99 self.processEditor(self.__lastEditor) |
100 |
100 |
101 def processEditor(self, editor=None): |
101 def processEditor(self, editor=None): |