diff options
Diffstat (limited to 'src/Editor.h')
| -rw-r--r-- | src/Editor.h | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Editor.h b/src/Editor.h index 4826a1852..6c7ae6c59 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -309,8 +309,7 @@ protected:	// ScintillaBase subclass needs access to much of Editor  	ContractionState cs;  	// Hotspot support -	int hsStart; -	int hsEnd; +	Range hotspot;  	// Wrapping support  	int wrapWidth; @@ -623,7 +622,7 @@ protected:	// ScintillaBase subclass needs access to much of Editor  	bool PositionIsHotspot(int position) const;  	bool PointIsHotspot(Point pt);  	void SetHotSpotRange(Point *pt); -	void GetHotSpotRange(int &hsStart, int &hsEnd) const; +	Range GetHotSpotRange() const;  	int CodePage() const;  	virtual bool ValidCodePage(int /* codePage */) const { return true; }  | 
