diff options
| author | nyamatongwe <unknown> | 2010-07-07 03:23:11 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2010-07-07 03:23:11 +0000 | 
| commit | 0b6e7242716a538874d39d2e05d02182d456de88 (patch) | |
| tree | bef1c6a09a5d08fabab930f9347cbc37eb1c1e68 /src/PerLine.h | |
| parent | bfbb9c2448820b005e463fc30a684b724bda5ec5 (diff) | |
| download | scintilla-mirror-0b6e7242716a538874d39d2e05d02182d456de88.tar.gz | |
Redraw when annotations change.
DeleteAllMarks will only cause a modification notification when a mark was actually deleted.
Diffstat (limited to 'src/PerLine.h')
| -rw-r--r-- | src/PerLine.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/PerLine.h b/src/PerLine.h index 8f1566bd3..df4728632 100644 --- a/src/PerLine.h +++ b/src/PerLine.h @@ -56,7 +56,7 @@ public:  	int MarkValue(int line);  	int AddMark(int line, int marker, int lines);  	void MergeMarkers(int pos); -	void DeleteMark(int line, int markerNum, bool all); +	bool DeleteMark(int line, int markerNum, bool all);  	void DeleteMarkFromHandle(int markerHandle);  	int LineFromHandle(int markerHandle);  }; | 
