E5Gui/E5ErrorMessageFilterDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2791
a9577f248f04
parent 2990
583beaf0b4b8
child 3145
a9de05d4a22f
diff -r 9986ec0e559a -r 10516539f238 E5Gui/E5ErrorMessageFilterDialog.py
--- a/E5Gui/E5ErrorMessageFilterDialog.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/E5Gui/E5ErrorMessageFilterDialog.py	Fri Oct 18 23:00:41 2013 +0200
@@ -24,7 +24,8 @@
         """
         Constructor
         
-        @param messageFilters list of message filters to be edited (list of strings)
+        @param messageFilters list of message filters to be edited
+            (list of strings)
         @param parent reference to the parent widget (QWidget)
         """
         super(E5ErrorMessageFilterDialog, self).__init__(parent)
@@ -37,7 +38,8 @@
         self.__proxyModel.setSourceModel(self.__model)
         self.filterList.setModel(self.__proxyModel)
         
-        self.searchEdit.textChanged.connect(self.__proxyModel.setFilterFixedString)
+        self.searchEdit.textChanged.connect(
+            self.__proxyModel.setFilterFixedString)
         
         self.removeButton.clicked[()].connect(self.filterList.removeSelected)
         self.removeAllButton.clicked[()].connect(self.filterList.removeAll)

eric ide

mercurial