diff options
| author | nyamatongwe <unknown> | 2003-04-05 03:37:14 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2003-04-05 03:37:14 +0000 | 
| commit | 47c84f2b148b82bc39900177404b2bd81c4b89cc (patch) | |
| tree | 9f16a107ad67b6247f80393781010efbbbeabdd0 /src/CallTip.h | |
| parent | e4bbba996b6d6618249846334aea8fe6f3f9e5f0 (diff) | |
| download | scintilla-mirror-47c84f2b148b82bc39900177404b2bd81c4b89cc.tar.gz | |
Positioning window so that function name lines up with editor window even
when there are up and down arrows.
Repositioned arrows.
Diffstat (limited to 'src/CallTip.h')
| -rw-r--r-- | src/CallTip.h | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/CallTip.h b/src/CallTip.h index ff61f32a5..ffaedb077 100644 --- a/src/CallTip.h +++ b/src/CallTip.h @@ -18,11 +18,12 @@ class CallTip {  	int xUp;  	int xDown;  	int lineHeight; +	int offsetMain;  	// Private so CallTip objects can not be copied  	CallTip(const CallTip &) {}  	CallTip &operator=(const CallTip &) { return *this; } -	void DrawChunk(Surface *surface, int &x, const char *s,  -		int posStart, int posEnd, int ytext, PRectangle rcClient,  +	void DrawChunk(Surface *surface, int &x, const char *s, +		int posStart, int posEnd, int ytext, PRectangle rcClient,  		bool highlight, bool draw);  	int PaintContents(Surface *surfaceWindow, bool draw); | 
