diff options
| author | nyamatongwe <devnull@localhost> | 2003-04-05 03:37:14 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2003-04-05 03:37:14 +0000 |
| commit | fdbc467f23e1f47db1c920f1d698a3a2bf0270a5 (patch) | |
| tree | 9f16a107ad67b6247f80393781010efbbbeabdd0 /src/CallTip.h | |
| parent | edea1235f5542c39af92ee205fcd84e0ff6787f9 (diff) | |
| download | scintilla-mirror-fdbc467f23e1f47db1c920f1d698a3a2bf0270a5.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); |
