summaryrefslogtreecommitdiffstats
path: root/scintilla/src
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2012-01-12 13:07:12 +0000
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-01-12 13:07:12 +0000
commit3cb3f530afb0672185bbb879ab4caf367f15ede6 (patch)
tree13bb145ad9a21da0f1c51e12de2c300640bc2296 /scintilla/src
parent4913f03f6e6fae6d9b75a32d5d02930c1624dd80 (diff)
downloadnotepad2-mod-3cb3f530afb0672185bbb879ab4caf367f15ede6.zip
notepad2-mod-3cb3f530afb0672185bbb879ab4caf367f15ede6.tar.gz
notepad2-mod-3cb3f530afb0672185bbb879ab4caf367f15ede6.tar.bz2
cosmetics in makefile.mak, update scintilla
git-svn-id: https://notepad2-mod.googlecode.com/svn/trunk@696 28bd50df-7adb-d945-0439-6e466c6a13cc
Diffstat (limited to 'scintilla/src')
-rw-r--r--scintilla/src/Editor.cxx4
-rw-r--r--scintilla/src/Editor.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/scintilla/src/Editor.cxx b/scintilla/src/Editor.cxx
index 8207cc0..88751e6 100644
--- a/scintilla/src/Editor.cxx
+++ b/scintilla/src/Editor.cxx
@@ -2517,7 +2517,7 @@ void DrawTextBlob(Surface *surface, ViewStyle &vsDraw, PRectangle rcSegment,
}
void Editor::DrawEOL(Surface *surface, ViewStyle &vsDraw, PRectangle rcLine, LineLayout *ll,
- int line, int lineEnd, int xStart, int subLine, int subLineStart,
+ int line, int lineEnd, int xStart, int subLine, XYACCUMULATOR subLineStart,
bool overrideBackground, ColourDesired background,
bool drawWrapMarkEnd, ColourDesired wrapColour) {
@@ -2847,7 +2847,7 @@ void Editor::DrawLine(Surface *surface, ViewStyle &vsDraw, int line, int lineVis
int posLineStart = pdoc->LineStart(line);
int startseg = ll->LineStart(subLine);
- int subLineStart = ll->positions[startseg];
+ XYACCUMULATOR subLineStart = ll->positions[startseg];
if (subLine >= ll->lines) {
DrawAnnotation(surface, vsDraw, line, xStart, rcLine, ll, subLine);
return; // No further drawing
diff --git a/scintilla/src/Editor.h b/scintilla/src/Editor.h
index c876868..d159278 100644
--- a/scintilla/src/Editor.h
+++ b/scintilla/src/Editor.h
@@ -373,7 +373,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
void DrawIndentGuide(Surface *surface, int lineVisible, int lineHeight, int start, PRectangle rcSegment, bool highlight);
void DrawWrapMarker(Surface *surface, PRectangle rcPlace, bool isEndMarker, ColourDesired wrapColour);
void DrawEOL(Surface *surface, ViewStyle &vsDraw, PRectangle rcLine, LineLayout *ll,
- int line, int lineEnd, int xStart, int subLine, int subLineStart,
+ int line, int lineEnd, int xStart, int subLine, XYACCUMULATOR subLineStart,
bool overrideBackground, ColourDesired background,
bool drawWrapMark, ColourDesired wrapColour);
void DrawIndicator(int indicNum, int startPos, int endPos, Surface *surface, ViewStyle &vsDraw,