diff options
author | Neil <nyamatongwe@gmail.com> | 2018-05-30 13:31:21 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-05-30 13:31:21 +1000 |
commit | 4cedc11d45cc4707e0eef1cd8b6adf1aad5dc6cf (patch) | |
tree | cecc1b7c00fea39c0304e3028338c775eaed916d | |
parent | a9e99a64ab628e1044cc55d65a712a90af70d7a2 (diff) | |
download | scintilla-mirror-4cedc11d45cc4707e0eef1cd8b6adf1aad5dc6cf.tar.gz |
Backport: Fix comments.
Backport of changeset 7005:19ae9a03d7b0.
-rw-r--r-- | src/PerLine.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/PerLine.h b/src/PerLine.h index ad9f9ee75..bf0968f28 100644 --- a/src/PerLine.h +++ b/src/PerLine.h @@ -50,7 +50,7 @@ class LineMarkers : public PerLine { public: LineMarkers() : handleCurrent(0) { } - // Deleted so Worker objects can not be copied. + // Deleted so LineMarkers objects can not be copied. LineMarkers(const LineMarkers &) = delete; LineMarkers(LineMarkers &&) = delete; void operator=(const LineMarkers &) = delete; @@ -95,7 +95,7 @@ class LineState : public PerLine { public: LineState() { } - // Deleted so Worker objects can not be copied. + // Deleted so LineState objects can not be copied. LineState(const LineState &) = delete; LineState(LineState &&) = delete; void operator=(const LineState &) = delete; @@ -115,7 +115,7 @@ class LineAnnotation : public PerLine { public: LineAnnotation() { } - // Deleted so Worker objects can not be copied. + // Deleted so LineAnnotation objects can not be copied. LineAnnotation(const LineAnnotation &) = delete; LineAnnotation(LineAnnotation &&) = delete; void operator=(const LineAnnotation &) = delete; @@ -144,7 +144,7 @@ class LineTabstops : public PerLine { public: LineTabstops() { } - // Deleted so Worker objects can not be copied. + // Deleted so LineTabstops objects can not be copied. LineTabstops(const LineTabstops &) = delete; LineTabstops(LineTabstops &&) = delete; void operator=(const LineTabstops &) = delete; |