summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-powerstroke.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/lpe-powerstroke.cpp')
-rw-r--r--src/live_effects/lpe-powerstroke.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/live_effects/lpe-powerstroke.cpp b/src/live_effects/lpe-powerstroke.cpp
index e7700ba78..0a13e4661 100644
--- a/src/live_effects/lpe-powerstroke.cpp
+++ b/src/live_effects/lpe-powerstroke.cpp
@@ -133,22 +133,6 @@ static const Util::EnumData<unsigned> InterpolatorTypeData[] = {
};
static const Util::EnumDataConverter<unsigned> InterpolatorTypeConverter(InterpolatorTypeData, sizeof(InterpolatorTypeData)/sizeof(*InterpolatorTypeData));
-enum LineCapType {
- LINECAP_BUTT,
- LINECAP_SQUARE,
- LINECAP_ROUND,
- LINECAP_PEAK,
- LINECAP_ZERO_WIDTH
-};
-static const Util::EnumData<unsigned> LineCapTypeData[] = {
- {LINECAP_BUTT, N_("Butt"), "butt"},
- {LINECAP_SQUARE, N_("Square"), "square"},
- {LINECAP_ROUND, N_("Round"), "round"},
- {LINECAP_PEAK, N_("Peak"), "peak"},
- {LINECAP_ZERO_WIDTH, N_("Zero width"), "zerowidth"}
-};
-static const Util::EnumDataConverter<unsigned> LineCapTypeConverter(LineCapTypeData, sizeof(LineCapTypeData)/sizeof(*LineCapTypeData));
-
enum LineJoinType {
LINEJOIN_BEVEL,
LINEJOIN_ROUND,