aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/Editor.cxx1
-rw-r--r--src/ViewStyle.cxx2
-rw-r--r--src/ViewStyle.h1
3 files changed, 0 insertions, 4 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index fcfc04998..85b70b7ac 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -3774,7 +3774,6 @@ long Editor::FormatRange(bool draw, Sci_RangeToFormat *pfr) {
vsPrint.ms[margin].width = 0;
}
}
- vsPrint.showMarkedLines = false;
vsPrint.fixedColumnWidth = 0;
vsPrint.zoomLevel = printMagnification;
// Don't show indentation guides
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx
index 737a23183..a4894ef58 100644
--- a/src/ViewStyle.cxx
+++ b/src/ViewStyle.cxx
@@ -200,7 +200,6 @@ ViewStyle::ViewStyle(const ViewStyle &source) {
whitespaceSize = source.whitespaceSize;
viewIndentationGuides = source.viewIndentationGuides;
viewEOL = source.viewEOL;
- showMarkedLines = source.showMarkedLines;
extraFontFlag = source.extraFontFlag;
extraAscent = source.extraAscent;
extraDescent = source.extraDescent;
@@ -314,7 +313,6 @@ void ViewStyle::Init(size_t stylesSize_) {
whitespaceSize = 1;
viewIndentationGuides = ivNone;
viewEOL = false;
- showMarkedLines = true;
extraFontFlag = 0;
extraAscent = 0;
extraDescent = 0;
diff --git a/src/ViewStyle.h b/src/ViewStyle.h
index 6811cbbb9..56d15d3e5 100644
--- a/src/ViewStyle.h
+++ b/src/ViewStyle.h
@@ -112,7 +112,6 @@ public:
int whitespaceSize;
IndentView viewIndentationGuides;
bool viewEOL;
- bool showMarkedLines;
ColourDesired caretcolour;
ColourDesired additionalCaretColour;
bool showCaretLineBackground;