diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-03 12:54:32 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-04 08:30:24 +0200 |
commit | 1d92933d96d94819fa3a4ae2de9519874f9b92b6 (patch) | |
tree | 8b43292fd1950be75ce05c726696310eaf12e747 /include | |
parent | 397a0afd3b3dd597f23bfbc75543eaead8bab5d2 (diff) |
convert B2VectorContinuity to scoped enum
Change-Id: Ifa401dd0d2d1bef8c0ae2987d2aee86100b59816
Diffstat (limited to 'include')
-rw-r--r-- | include/basegfx/vector/b2enums.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/basegfx/vector/b2enums.hxx b/include/basegfx/vector/b2enums.hxx index f1ba1781ea1b..80c242ef7862 100644 --- a/include/basegfx/vector/b2enums.hxx +++ b/include/basegfx/vector/b2enums.hxx @@ -43,13 +43,13 @@ namespace basegfx enum B2VectorContinuity { /// none - CONTINUITY_NONE = 0, + NONE = 0, /// mathematically negative oriented - CONTINUITY_C1, + C1, /// mathematically neutral, thus parallel - CONTINUITY_C2 + C2 }; /** Descriptor for possible line joins between two line segments |