Tasks/TaskViewer.py

changeset 3030
4a0a82ddd9d2
parent 3020
542e97d4ecb3
child 3034
7ce719013078
child 3058
0a02c433f52d
diff -r 4055a15ce0f2 -r 4a0a82ddd9d2 Tasks/TaskViewer.py
--- a/Tasks/TaskViewer.py	Fri Oct 18 18:00:02 2013 +0200
+++ b/Tasks/TaskViewer.py	Fri Oct 18 18:42:10 2013 +0200
@@ -53,8 +53,9 @@
         self.setItemsExpandable(False)
         self.setSortingEnabled(True)
         
-        self.__headerItem = QTreeWidgetItem(["", "", self.trUtf8("Summary"),
-            self.trUtf8("Filename"), self.trUtf8("Line"), ""])
+        self.__headerItem = QTreeWidgetItem(
+            ["", "", self.trUtf8("Summary"), self.trUtf8("Filename"),
+             self.trUtf8("Line"), ""])
         self.__headerItem.setIcon(
             0, UI.PixmapCache.getIcon("taskCompleted.png"))
         self.__headerItem.setIcon(
@@ -265,8 +266,8 @@
         @param description explanatory text of the task (string)
         """
         task = Task(summary, priority, filename, lineno, completed,
-                   _time, isProjectTask, taskType,
-                   self.project, description)
+                    _time, isProjectTask, taskType,
+                    self.project, description)
         self.tasks.append(task)
         if self.taskFilter.showTask(task):
             self.addTopLevelItem(task)
@@ -541,7 +542,8 @@
         self.clearProjectTasks(fileOnly=True)
         
         # now process them
-        progress = QProgressDialog(self.trUtf8("Extracting project tasks..."),
+        progress = QProgressDialog(
+            self.trUtf8("Extracting project tasks..."),
             self.trUtf8("Abort"), 0, len(files))
         progress.setMinimumDuration(0)
         count = 0

eric ide

mercurial