--- a/E5Gui/E5PathPicker.py Sun Dec 11 16:25:42 2016 +0100 +++ b/E5Gui/E5PathPicker.py Sun Dec 11 18:28:42 2016 +0100 @@ -713,3 +713,15 @@ @type QWidget """ super(E5ComboPathPicker, self).__init__(parent, useLineEdit=False) + + def getPathItems(self): + """ + Public method to get the list of remembered paths. + + @return list od remembered paths + @rtype list of str + """ + paths = [] + for index in range(self._editor.count()): + paths.append(self._editor.itemText(index)) + return paths