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 | 5d4ab626a50baab56084cbc61510280ddae174a6 (patch) | |
tree | d4cc1c8b223bacd114f925ffd80fbb8fd8d7497d /src/PerLine.h | |
parent | 3af984c23fb51b23894ec741015a3b2eb98a8285 (diff) | |
download | scintilla-mirror-5d4ab626a50baab56084cbc61510280ddae174a6.tar.gz |
Fix comments.
Diffstat (limited to 'src/PerLine.h')
-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; |