diff options
author | nyamatongwe <devnull@localhost> | 2000-10-05 12:20:59 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-10-05 12:20:59 +0000 |
commit | 2ca50cc7e4f1f901eeefd87f0417e353d076b457 (patch) | |
tree | c80e2b4a5f9c9c89f72fed1ea652a39d45457510 /gtk | |
parent | 9a01d2bdda91768a75e58a8e0a87b74b71d4e003 (diff) | |
download | scintilla-mirror-2ca50cc7e4f1f901eeefd87f0417e353d076b457.tar.gz |
SetCursor implemented.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 34d3e2289..b0130a793 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1026,7 +1026,7 @@ gint ScintillaGTK::DestroyWindow(GtkWidget *, ScintillaGTK *sciThis) { gint ScintillaGTK::Expose(GtkWidget *, GdkEventExpose *ose, ScintillaGTK *sciThis) { if (sciThis->firstExpose) { - sciThis->wDraw.SetCursor(Window::cursorText); + sciThis->DisplayCursor(Window::cursorText); sciThis->firstExpose = false; } |