Fixed a few coding style issues.

Thu, 23 Apr 2015 20:11:44 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 23 Apr 2015 20:11:44 +0200
changeset 4236
8d4e498a7af8
parent 4235
81278aff6af9
child 4237
ff8a3e769fca

Fixed a few coding style issues.

Documentation/Help/source.qch file | annotate | diff | comparison | revisions
Documentation/Source/eric6.Utilities.BackgroundService.html file | annotate | diff | comparison | revisions
Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py file | annotate | diff | comparison | revisions
Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py file | annotate | diff | comparison | revisions
Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py file | annotate | diff | comparison | revisions
Plugins/CheckerPlugins/SyntaxChecker/jsCheckSyntax.py file | annotate | diff | comparison | revisions
Utilities/BackgroundService.py file | annotate | diff | comparison | revisions
Binary file Documentation/Help/source.qch has changed
--- a/Documentation/Source/eric6.Utilities.BackgroundService.html	Thu Apr 23 20:05:38 2015 +0200
+++ b/Documentation/Source/eric6.Utilities.BackgroundService.html	Thu Apr 23 20:11:44 2015 +0200
@@ -211,7 +211,10 @@
 <p>
         Public method to ask a batch job to terminate.
 </p><dl>
-<dt><i>lang</i></dt>
+<dt><i>fx</i></dt>
+<dd>
+function name of the service (str)
+</dd><dt><i>lang</i></dt>
 <dd>
 language to connect to (str)
 </dd>
--- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py	Thu Apr 23 20:05:38 2015 +0200
+++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py	Thu Apr 23 20:11:44 2015 +0200
@@ -587,7 +587,8 @@
                 self.showButton.setEnabled(False)
             else:
                 self.showButton.setEnabled(True)
-            self.resultList.header().resizeSections(QHeaderView.ResizeToContents)
+            self.resultList.header().resizeSections(
+                QHeaderView.ResizeToContents)
             self.resultList.header().setStretchLastSection(True)
             
             self.checkProgress.setVisible(False)
--- a/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py	Thu Apr 23 20:05:38 2015 +0200
+++ b/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py	Thu Apr 23 20:11:44 2015 +0200
@@ -110,7 +110,7 @@
     """
     Module function to check syntax for a batch of files.
     
-    @param argumentsList list of arguments tuples as given for 
+    @param argumentsList list of arguments tuples as given for
         syntaxAndPyflakesCheck
     @param send reference to send function (function)
     @param fx registered service name (string)
--- a/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py	Thu Apr 23 20:05:38 2015 +0200
+++ b/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py	Thu Apr 23 20:11:44 2015 +0200
@@ -345,7 +345,8 @@
                 self.showButton.setEnabled(False)
             else:
                 self.showButton.setEnabled(True)
-            self.resultList.header().resizeSections(QHeaderView.ResizeToContents)
+            self.resultList.header().resizeSections(
+                QHeaderView.ResizeToContents)
             self.resultList.header().setStretchLastSection(True)
             
             self.checkProgress.setVisible(False)
--- a/Plugins/CheckerPlugins/SyntaxChecker/jsCheckSyntax.py	Thu Apr 23 20:05:38 2015 +0200
+++ b/Plugins/CheckerPlugins/SyntaxChecker/jsCheckSyntax.py	Thu Apr 23 20:11:44 2015 +0200
@@ -74,7 +74,7 @@
     """
     Module function to check syntax for a batch of files.
     
-    @param argumentsList list of arguments tuples as given for 
+    @param argumentsList list of arguments tuples as given for
         syntaxAndPyflakesCheck
     @param send reference to send function (function)
     @param fx registered service name (string)
--- a/Utilities/BackgroundService.py	Thu Apr 23 20:05:38 2015 +0200
+++ b/Utilities/BackgroundService.py	Thu Apr 23 20:11:44 2015 +0200
@@ -300,6 +300,7 @@
         """
         Public method to ask a batch job to terminate.
         
+        @param fx function name of the service (str)
         @param lang language to connect to (str)
         """
         self.__cancelled = True

eric ide

mercurial