diff options
| author | nyamatongwe <unknown> | 2003-04-29 13:23:31 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2003-04-29 13:23:31 +0000 | 
| commit | 9239cc0f68dd11ab388e4869f7f15bc94eb47694 (patch) | |
| tree | 87862b460e37ffd27009e31bba4e61fd08cc6dc2 | |
| parent | 8b96b708caa33d140645a82979eaf328aa4d537d (diff) | |
| download | scintilla-mirror-9239cc0f68dd11ab388e4869f7f15bc94eb47694.tar.gz | |
Made DisplayCursor virtual so could be overridden by GTK+ platform code.
| -rw-r--r-- | src/Editor.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Editor.h b/src/Editor.h index 2cc7930c4..f2a4c9ca9 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -419,7 +419,7 @@ protected:	// ScintillaBase subclass needs access to much of Editor  	char *CopyRange(int start, int end);  	void CopySelectionRange(SelectionText *ss);  	void SetDragPosition(int newPos); -	void DisplayCursor(Window::Cursor c); +	virtual void DisplayCursor(Window::Cursor c);  	virtual void StartDrag();  	void DropAt(int position, const char *value, bool moving, bool rectangular);  	/** PositionInSelection returns 0 if position in selection, -1 if position before selection, and 1 if after. | 
