diff options
author | nyamatongwe <unknown> | 2010-02-17 00:39:46 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-02-17 00:39:46 +0000 |
commit | 58f779b422ffbb2291364dcd5966ead10b21b087 (patch) | |
tree | fddf110012583bb00001b22648b574320f642815 /src/LineMarker.cxx | |
parent | d55ea76cd64ec2770d97e62ccdfcff8ccad5b43d (diff) | |
download | scintilla-mirror-58f779b422ffbb2291364dcd5966ead10b21b087.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 |