diff options
| author | nyamatongwe <devnull@localhost> | 2001-01-27 06:00:27 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-01-27 06:00:27 +0000 | 
| commit | 6fe06743a0bd6ad13d9208e1673f3ccdb22ef005 (patch) | |
| tree | 0fc319c03b84a185c84e575c06740577857952f7 /src/ScintillaBase.cxx | |
| parent | ef5b4f4ee4106324df53b6f492dfdca95a5e7a25 (diff) | |
| download | scintilla-mirror-6fe06743a0bd6ad13d9208e1673f3ccdb22ef005.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();  			}  		} | 
