diff options
author | nyamatongwe <unknown> | 2001-01-27 06:00:27 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-01-27 06:00:27 +0000 |
commit | ba22db923ee18c31a0a8797dbe1e6c6c3ec2e4e0 (patch) | |
tree | 0fc319c03b84a185c84e575c06740577857952f7 /src/ScintillaBase.cxx | |
parent | f81b8719262437eeabe735ec377ce0250d356503 (diff) | |
download | scintilla-mirror-ba22db923ee18c31a0a8797dbe1e6c6c3ec2e4e0.tar.gz |
Much changed ScintillaGTK widget code that draws directly onto the
Scintilla widget with no wDraw drawing area.
Signals handled directly through callbacks.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 703d6e534..ccb9dcf53 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -1,6 +1,6 @@ // Scintilla source code edit control // ScintillaBase.cxx - an enhanced subclass of Editor with calltips, autocomplete and context menu -// Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org> +// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #include <stdlib.h> @@ -187,7 +187,7 @@ void ScintillaBase::AutoCompleteStart(int lenEntered, const char *list) { return; } } - ac.Start(wDraw, idAutoComplete, currentPos, lenEntered); + ac.Start(wMain, idAutoComplete, currentPos, lenEntered); PRectangle rcClient = GetClientRectangle(); Point pt = LocationFromPosition(currentPos-lenEntered); @@ -448,7 +448,7 @@ long ScintillaBase::WndProc(unsigned int iMessage, unsigned long wParam, long lP } // Now display the window. CreateCallTipWindow(rc); - ct.wCallTip.SetPositionRelative(rc, wDraw); + ct.wCallTip.SetPositionRelative(rc, wMain); ct.wCallTip.Show(); } } |