diff options
author | Neil <nyamatongwe@gmail.com> | 2018-04-26 14:10:15 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-04-26 14:10:15 +1000 |
commit | f2b280565298dc86af2885ad78d331ba37602bfc (patch) | |
tree | 94481faafd7dc3ee063b1ba41a6ff8b773b0ffe0 /src/EditView.h | |
parent | 243f0f5ef7c14109f03eb627aee88028d6acfdf1 (diff) | |
download | scintilla-mirror-f2b280565298dc86af2885ad78d331ba37602bfc.tar.gz |
Backport: Specify concrete class for ldTabstops and use directly instead of copying value
of .get() before use.
Backport of changeset 6745:f8cf44b26722.
Diffstat (limited to 'src/EditView.h')
-rw-r--r-- | src/EditView.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/EditView.h b/src/EditView.h index f79147135..37d0423bb 100644 --- a/src/EditView.h +++ b/src/EditView.h @@ -42,13 +42,15 @@ void DrawStyledText(Surface *surface, const ViewStyle &vs, int styleOffset, PRec typedef void (*DrawTabArrowFn)(Surface *surface, PRectangle rcTab, int ymid); +class LineTabstops; + /** * EditView draws the main text area. */ class EditView { public: PrintParameters printParameters; - std::unique_ptr<PerLine> ldTabstops; + std::unique_ptr<LineTabstops> ldTabstops; int tabWidthMinimumPixels; bool hideSelection; |