diff -r fc4f447ab637 -r 0017e7cb67ae E5Gui/E5PathPicker.py --- a/E5Gui/E5PathPicker.py Sat Dec 05 12:23:39 2015 +0100 +++ b/E5Gui/E5PathPicker.py Sat Dec 05 13:02:26 2015 +0100 @@ -17,7 +17,7 @@ from ThirdParty.enum import Enum from PyQt5.QtCore import pyqtSignal, Qt, QFileInfo -from PyQt5.QtWidgets import QWidget, QHBoxLayout, QToolButton, QSizePolicy +from PyQt5.QtWidgets import QWidget, QHBoxLayout, QToolButton, QSizePolicy from . import E5FileDialog from .E5LineEdit import E5ClearableLineEdit @@ -42,6 +42,7 @@ # TODO: Refactor the classes using a base class with common functions + class E5PathPicker(QWidget): """ Class implementing a path picker widget consisting of a line edit and a @@ -343,7 +344,7 @@ """ Public method to set the name filters for the completer. - @param filter list of file name filters + @param filters list of file name filters @type list of str """ self.__editor.completer().model().setNameFilters(filters)