diff options
author | nyamatongwe <devnull@localhost> | 2010-02-17 00:39:46 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-02-17 00:39:46 +0000 |
commit | 81966e31f21a009cbae89dd3f774b3a410f201e4 (patch) | |
tree | fddf110012583bb00001b22648b574320f642815 /src/LineMarker.cxx | |
parent | 827c80b678ba55806c611de6163cafa7dcf03fb8 (diff) | |
download | scintilla-mirror-81966e31f21a009cbae89dd3f774b3a410f201e4.tar.gz |
Formatting whitespace.
Diffstat (limited to 'src/LineMarker.cxx')
-rw-r--r-- | src/LineMarker.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LineMarker.cxx b/src/LineMarker.cxx index 0bfd47938..41efe48ca 100644 --- a/src/LineMarker.cxx +++ b/src/LineMarker.cxx @@ -31,7 +31,7 @@ void LineMarker::SetXPM(const char *textForm) { markType = SC_MARK_PIXMAP; } -void LineMarker::SetXPM(const char * const *linesForm) { +void LineMarker::SetXPM(const char *const *linesForm) { delete pxpm; pxpm = new XPM(linesForm); markType = SC_MARK_PIXMAP; @@ -154,7 +154,7 @@ void LineMarker::Draw(Surface *surface, PRectangle &rcWhole, Font &fontForCharac rcSmall.bottom = rc.bottom - 2; surface->RectangleDraw(rcSmall, fore.allocated, back.allocated); - } else if (markType == SC_MARK_EMPTY || markType == SC_MARK_BACKGROUND || + } else if (markType == SC_MARK_EMPTY || markType == SC_MARK_BACKGROUND || markType == SC_MARK_UNDERLINE || markType == SC_MARK_AVAILABLE) { // An invisible marker so don't draw anything |