diff options
| author | Neil <nyamatongwe@gmail.com> | 2014-05-03 20:21:13 +1000 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2014-05-03 20:21:13 +1000 | 
| commit | 97ae63fa3914ac9894a319c0c75eeeffe96b16e9 (patch) | |
| tree | 7cc80911f2b6338a9ea84744577c535c16346c2d /src/CallTip.cxx | |
| parent | 850baf30484384711aa410d3596531f49c15e1ac (diff) | |
| download | scintilla-mirror-97ae63fa3914ac9894a319c0c75eeeffe96b16e9.tar.gz | |
Replacing the int-based constructors for Point and PRectangle with FromInts
static methods as there were too many failures with mixed types and not-quite
matching types.
Diffstat (limited to 'src/CallTip.cxx')
| -rw-r--r-- | src/CallTip.cxx | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/src/CallTip.cxx b/src/CallTip.cxx index c1a3582f3..f6f3f10ea 100644 --- a/src/CallTip.cxx +++ b/src/CallTip.cxx @@ -125,16 +125,16 @@ void CallTip::DrawChunk(Surface *surface, int &x, const char *s,  					if (upArrow) {      // Up arrow  						Point pts[] = { -    						Point(centreX - halfWidth, centreY + quarterWidth), -    						Point(centreX + halfWidth, centreY + quarterWidth), -    						Point(centreX, centreY - halfWidth + quarterWidth), +    						Point::FromInts(centreX - halfWidth, centreY + quarterWidth), +    						Point::FromInts(centreX + halfWidth, centreY + quarterWidth), +    						Point::FromInts(centreX, centreY - halfWidth + quarterWidth),  						};  						surface->Polygon(pts, ELEMENTS(pts), colourBG, colourBG);  					} else {            // Down arrow  						Point pts[] = { -    						Point(centreX - halfWidth, centreY - quarterWidth), -    						Point(centreX + halfWidth, centreY - quarterWidth), -    						Point(centreX, centreY + halfWidth - quarterWidth), +    						Point::FromInts(centreX - halfWidth, centreY - quarterWidth), +    						Point::FromInts(centreX + halfWidth, centreY - quarterWidth), +    						Point::FromInts(centreX, centreY + halfWidth - quarterWidth),  						};  						surface->Polygon(pts, ELEMENTS(pts), colourBG, colourBG);  					} | 
