aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/EditView.h
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2014-08-24 09:27:23 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2014-08-24 09:27:23 +1000
commitb7efbe3c5c3710be132736bc4a25985729f37e5d (patch)
treeb98e12cdb3e2b1484a51123fc1b04e14a61dc340 /src/EditView.h
parent33852f7c80791dddbcdb1c2cc009406e9f47fc68 (diff)
downloadscintilla-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/EditView.h')
-rw-r--r--src/EditView.h2
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);