summaryrefslogtreecommitdiff
path: root/src/data/edge.h
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2018-10-06 16:06:06 +0200
committerAleks Kissinger <aleks0@gmail.com>2018-10-06 16:06:06 +0200
commitc0b8dea3d3b93fd4b87e5311b6c6422a7ccdb723 (patch)
tree7bea34c2d86c2d68a6c6d4d9e003c8573dc77449 /src/data/edge.h
parent6359b28b155355e0be67961cc21eccdbd2c61cc2 (diff)
removed EdgeStyle and NodeStyle classes
Diffstat (limited to 'src/data/edge.h')
-rw-r--r--src/data/edge.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/data/edge.h b/src/data/edge.h
index 85959bb..ad71364 100644
--- a/src/data/edge.h
+++ b/src/data/edge.h
@@ -21,7 +21,7 @@
#include "graphelementdata.h"
#include "node.h"
-#include "edgestyle.h"
+#include "style.h"
#include <QObject>
#include <QPointF>
@@ -85,7 +85,7 @@ public:
void attachStyle();
QString styleName() const;
void setStyleName(const QString & styleName);
- EdgeStyle *style() const;
+ Style *style() const;
signals:
@@ -105,7 +105,7 @@ private:
Node *_target;
- EdgeStyle *_style;
+ Style *_style;
bool _dirty;
bool _basicBendMode;