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 | be38580f4a6cd0d76312ce41ff8171526b864ba3 (patch) | |
tree | 900104b210c60d7cc3a0b4dc3a086b482f67b139 /src | |
parent | 5a4059133bef5835e5fb7ec73a82b77e091127fd (diff) | |
download | scintilla-mirror-be38580f4a6cd0d76312ce41ff8171526b864ba3.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); |