[TD] missing arrow style change

I missed this change in PR #3221
This commit is contained in:
donovaly
2020-03-22 02:35:48 +01:00
committed by WandererFan
parent 58b926e308
commit 1d8df25e32

View File

@@ -32,14 +32,14 @@ namespace TechDraw
{
//common definitions for line ends / arrows
enum ArrowType { NONE = 0,
FILLED_ARROW,
enum ArrowType { FILLED_ARROW = 0,
OPEN_ARROW,
TICK,
DOT,
OPEN_CIRCLE,
FORK,
FILLED_TRIANGLE };
FILLED_TRIANGLE,
NONE};
class TechDrawExport ArrowPropEnum {
Q_DECLARE_TR_FUNCTIONS(TechDraw::ArrowPropEnum)