aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CallTip.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-04-05 03:37:14 +0000
committernyamatongwe <unknown>2003-04-05 03:37:14 +0000
commit47c84f2b148b82bc39900177404b2bd81c4b89cc (patch)
tree9f16a107ad67b6247f80393781010efbbbeabdd0 /src/CallTip.h
parente4bbba996b6d6618249846334aea8fe6f3f9e5f0 (diff)
downloadscintilla-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.h5
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);