summaryrefslogtreecommitdiff
path: root/src/data/nodestyle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/nodestyle.cpp')
-rw-r--r--src/data/nodestyle.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/data/nodestyle.cpp b/src/data/nodestyle.cpp
index e38d3a3..302ab84 100644
--- a/src/data/nodestyle.cpp
+++ b/src/data/nodestyle.cpp
@@ -24,13 +24,13 @@ QString NodeStyle::name() const
return _name;
}
-NodeShape NodeStyle::shape() const
+NodeStyle::Shape NodeStyle::shape() const
{
QString sh = _data->property("shape");
- if (sh.isNull()) return NodeShape::Circle;
- else if (sh == "circle") return NodeShape::Circle;
- else if (sh == "rectangle") return NodeShape::Rectangle;
- else return NodeShape::Circle;
+ if (sh.isNull()) return NodeStyle::Circle;
+ else if (sh == "circle") return NodeStyle::Circle;
+ else if (sh == "rectangle") return NodeStyle::Rectangle;
+ else return NodeStyle::Circle;
}
QColor NodeStyle::fillColor() const