diff options
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index d1074073e..456fdd1ea 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -33,6 +33,9 @@ public: int numCharsInLine; int xHighlightGuide; bool highlightColumn; + int selStart; + int selEnd; + int edgeColumn; char chars[maxLineLength]; char styles[maxLineLength]; char indicators[maxLineLength]; @@ -106,7 +109,6 @@ protected: // ScintillaBase subclass needs access to much of Editor int bracesMatchStyle; int highlightGuideColumn; - int edgeState; int theEdge; enum { notPainting, painting, paintAbandoned } paintState; |