--- a/UI/UserInterface.py Mon Nov 12 19:48:08 2018 +0100 +++ b/UI/UserInterface.py Fri Nov 16 20:00:03 2018 +0100 @@ -4568,7 +4568,9 @@ Private slot to start the Qt-Designer executable. @param fn filename of the form to be opened - @param version indication for the requested version (Qt 4) (integer) + @type str + @param version indication for the requested version (4 = Qt 4/5) + @type int """ if fn is not None and version == 0: # determine version from file, if not specified @@ -4644,7 +4646,7 @@ def __designer4(self): """ - Private slot to start the Qt-Designer 4 executable. + Private slot to start the Qt-Designer 4/5 executable. """ self.__designer(version=4) @@ -4653,7 +4655,9 @@ Private slot to start the Qt-Linguist executable. @param fn filename of the translation file to be opened - @param version indication for the requested version (Qt 4) (integer) + @type str + @param version indication for the requested version (4 = Qt 4/5) + @type int """ if version < 4: E5MessageBox.information( @@ -4713,7 +4717,7 @@ @pyqtSlot(str) def __linguist4(self, fn=None): """ - Private slot to start the Qt-Linguist 4 executable. + Private slot to start the Qt-Linguist 4/5 executable. @param fn filename of the translation file to be opened """ @@ -4723,8 +4727,10 @@ """ Private slot to start the Qt-Assistant executable. - @param home full pathname of a file to display (string) - @param version indication for the requested version (Qt 4) (integer) + @param home full pathname of a file to display + @type str + @param version indication for the requested version (4 = Qt 4/5) + @type int """ if version < 4: E5MessageBox.information( @@ -4762,7 +4768,7 @@ def __assistant4(self): """ - Private slot to start the Qt-Assistant 4 executable. + Private slot to start the Qt-Assistant 4/5 executable. """ self.__assistant(version=4)