src/eric7/EricWidgets/EricToolBarDialog.py

branch
eric7
changeset 10689
3ede487187f2
parent 10621
f5631f40c4d9
child 10869
3ea51d5cd462
equal deleted inserted replaced
10688:0d9853ceb288 10689:3ede487187f2
303 self.toolbarActionsList.setCurrentRow(0) 303 self.toolbarActionsList.setCurrentRow(0)
304 304
305 self.__setupButtons() 305 self.__setupButtons()
306 306
307 @pyqtSlot(QTreeWidgetItem, QTreeWidgetItem) 307 @pyqtSlot(QTreeWidgetItem, QTreeWidgetItem)
308 def on_actionsTree_currentItemChanged(self, current, previous): 308 def on_actionsTree_currentItemChanged(self, _current, _previous):
309 """ 309 """
310 Private slot called, when the currently selected action changes. 310 Private slot called, when the currently selected action changes.
311 311
312 @param current reference to the current item 312 @param _current reference to the current item (unused)
313 @type QTreeWidgetItem 313 @type QTreeWidgetItem
314 @param previous reference to the previous current item 314 @param _previous reference to the previous current item (unused)
315 @type QTreeWidgetItem 315 @type QTreeWidgetItem
316 """ 316 """
317 self.__setupButtons() 317 self.__setupButtons()
318 318
319 @pyqtSlot(QListWidgetItem, QListWidgetItem) 319 @pyqtSlot(QListWidgetItem, QListWidgetItem)
320 def on_toolbarActionsList_currentItemChanged(self, current, previous): 320 def on_toolbarActionsList_currentItemChanged(self, _current, _previous):
321 """ 321 """
322 Private slot to handle a change of the current item. 322 Private slot to handle a change of the current item.
323 323
324 @param current reference to the current item 324 @param _current reference to the current item (unused)
325 @type QListWidgetItem 325 @type QListWidgetItem
326 @param previous reference to the previous current item 326 @param _previous reference to the previous current item (unused)
327 @type QListWidgetItem 327 @type QListWidgetItem
328 """ 328 """
329 self.__setupButtons() 329 self.__setupButtons()
330 330
331 @pyqtSlot() 331 @pyqtSlot()

eric ide

mercurial