aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/EditView.cxx11
-rw-r--r--src/EditView.h4
2 files changed, 7 insertions, 8 deletions
diff --git a/src/EditView.cxx b/src/EditView.cxx
index 5c9bb7ff4..7a2225e2e 100644
--- a/src/EditView.cxx
+++ b/src/EditView.cxx
@@ -223,22 +223,19 @@ XYPOSITION EditView::NextTabstopPos(Sci::Line line, XYPOSITION x, XYPOSITION tab
}
bool EditView::ClearTabstops(Sci::Line line) {
- LineTabstops *lt = static_cast<LineTabstops *>(ldTabstops.get());
- return lt && lt->ClearTabstops(line);
+ return ldTabstops && ldTabstops->ClearTabstops(line);
}
bool EditView::AddTabstop(Sci::Line line, int x) {
if (!ldTabstops) {
ldTabstops = std::make_unique<LineTabstops>();
}
- LineTabstops *lt = static_cast<LineTabstops *>(ldTabstops.get());
- return lt && lt->AddTabstop(line, x);
+ return ldTabstops && ldTabstops->AddTabstop(line, x);
}
int EditView::GetNextTabstop(Sci::Line line, int x) const {
- const LineTabstops *lt = static_cast<LineTabstops *>(ldTabstops.get());
- if (lt) {
- return lt->GetNextTabstop(line, x);
+ if (ldTabstops) {
+ return ldTabstops->GetNextTabstop(line, x);
} else {
return 0;
}
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;