aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-04-29 13:23:31 +0000
committernyamatongwe <devnull@localhost>2003-04-29 13:23:31 +0000
commit6fae6aefecc1edb660f2946c7cf3cef0c69f1035 (patch)
tree87862b460e37ffd27009e31bba4e61fd08cc6dc2
parentdd8ef4dda4c28dc6273d7f1d0002e44d36d4eb29 (diff)
downloadscintilla-mirror-6fae6aefecc1edb660f2946c7cf3cef0c69f1035.tar.gz
Made DisplayCursor virtual so could be overridden by GTK+ platform code.
-rw-r--r--src/Editor.h2
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.