Thu, 23 Apr 2015 20:11:44 +0200
Fixed a few coding style issues.
--- 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