diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2014-08-24 09:27:23 +1000 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2014-08-24 09:27:23 +1000 |
commit | b7efbe3c5c3710be132736bc4a25985729f37e5d (patch) | |
tree | b98e12cdb3e2b1484a51123fc1b04e14a61dc340 /src | |
parent | 33852f7c80791dddbcdb1c2cc009406e9f47fc68 (diff) | |
download | scintilla-mirror-b7efbe3c5c3710be132736bc4a25985729f37e5d.tar.gz |
Removed comma at end of enum as it caused an error on i686-apple-darwin10-g++-4.2.1.
Diffstat (limited to 'src')
-rw-r--r-- | src/EditView.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditView.h b/src/EditView.h index 18451104f..dfcf3160c 100644 --- a/src/EditView.h +++ b/src/EditView.h @@ -32,7 +32,7 @@ enum DrawPhase { drawLineTranslucent = 0x40, drawFoldLines = 0x80, drawCarets = 0x100, - drawAll = 0x1FF, + drawAll = 0x1FF }; bool ValidStyledText(const ViewStyle &vs, size_t styleOffset, const StyledText &st); |