diff -r 84b65fb9e780 -r d133c7edd88a SqlBrowser/SqlConnectionDialog.py --- a/SqlBrowser/SqlConnectionDialog.py Sun Sep 29 15:54:10 2013 +0200 +++ b/SqlBrowser/SqlConnectionDialog.py Sun Sep 29 18:22:08 2013 +0200 @@ -26,6 +26,8 @@ def __init__(self, parent=None): """ Constructor + + @param parent reference to the parent widget (QWidget) """ super().__init__(parent) self.setupUi(self) @@ -73,13 +75,17 @@ def on_driverCombo_activated(self, txt): """ Private slot handling the selection of a database driver. + + @param txt text of the driver combo (string) """ self.__updateDialog() @pyqtSlot(str) - def on_databaseEdit_textChanged(self, p0): + def on_databaseEdit_textChanged(self, txt): """ Private slot handling the change of the database name. + + @param txt text of the edit (string) """ self.__updateDialog() @@ -102,9 +108,9 @@ """ Public method to retrieve the connection data. - @return tuple giving the driver name (string), the database name (string), - the user name (string), the password (string), the host name (string) - and the port (integer) + @return tuple giving the driver name (string), the database name + (string), the user name (string), the password (string), the + host name (string) and the port (integer) """ return ( self.driverCombo.currentText(),