diff options
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 | 
