diff --git a/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/table_edit_proxy.py b/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/table_edit_proxy.py index 9c75bc78..ed01153c 100644 --- a/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/table_edit_proxy.py +++ b/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/table_edit_proxy.py @@ -158,7 +158,7 @@ class TTkCellListType(TTkCellListTypeBase): def value(self) -> Any: return self._value - def serValue(self, val: Any) -> None: + def setValue(self, val: Any) -> None: ''' Set the value @@ -253,6 +253,12 @@ class TTkTableProxyEditWidget(TTkWidget): self.close() def isModal(self) -> bool: + ''' + Check if the editor should be displayed modally. + + :return: True if the editor requires modal display, False otherwise + :rtype: bool + ''' return False diff --git a/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/tablemodelcsv.py b/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/tablemodelcsv.py index 81ec7240..25f3114d 100644 --- a/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/tablemodelcsv.py +++ b/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/tablemodelcsv.py @@ -32,7 +32,7 @@ from TermTk.TTkWidgets.TTkModelView.tablemodellist import TTkTableModelList class TTkTableModelCSV(TTkTableModelList): ''' - :py:class:`TTkTableModelCSV` extends :py:class:`TTkTableModelList` with cvs loading helpers. + :py:class:`TTkTableModelCSV` extends :py:class:`TTkTableModelList` with csv loading helpers. You can address the csv file through the Filename (filename) or the FileDescriptor (fd). diff --git a/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/tablemodelsqlite3.py b/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/tablemodelsqlite3.py index 04e02c42..cefe51a8 100644 --- a/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/tablemodelsqlite3.py +++ b/libs/pyTermTk/TermTk/TTkWidgets/TTkModelView/tablemodelsqlite3.py @@ -67,7 +67,7 @@ class TTkTableModelSQLite3(TTkAbstractTableModel): In This example i assume i have a database named **sqlite.database.db** which contain a table **users** - Please refer to `test.ui.032.table.10.sqlite.py `_ for working eample. + Please refer to `test.ui.032.table.10.sqlite.py `_ for working example. .. code-block:: python