(self, fileName, lineNo, lineState)
| 913 | self.SetLineState(fileName, lineNo, lineState) |
| 914 | |
| 915 | def SetLineState(self, fileName, lineNo, lineState): |
| 916 | # Set the state of a line if the document is open. |
| 917 | doc = editor.editorTemplate.FindOpenDocument(fileName) |
| 918 | if doc is not None: |
| 919 | marker = _LineStateToMarker(lineState) |
| 920 | if not doc.MarkerCheck(lineNo, marker): |
| 921 | doc.MarkerAdd(lineNo, marker) |
| 922 | |
| 923 | def ResetLineState(self, fileName, lineNo, lineState): |
| 924 | # Set the state of a line if the document is open. |
no test coverage detected