summaryrefslogtreecommitdiff
path: root/src/gui/styleeditor.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/gui/styleeditor.h
parent6359b28b155355e0be67961cc21eccdbd2c61cc2 (diff)
removed EdgeStyle and NodeStyle classes
Diffstat (limited to 'src/gui/styleeditor.h')
-rw-r--r--src/gui/styleeditor.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/styleeditor.h b/src/gui/styleeditor.h
index f5df025..e40facd 100644
--- a/src/gui/styleeditor.h
+++ b/src/gui/styleeditor.h
@@ -1,8 +1,7 @@
#ifndef STYLEEDITOR_H
#define STYLEEDITOR_H
-#include "nodestyle.h"
-#include "edgestyle.h"
+#include "style.h"
#include "tikzstyles.h"
#include <QMainWindow>
@@ -62,8 +61,8 @@ private:
QStandardItemModel *_nodeModel;
QStandardItemModel *_edgeModel;
QStandardItem *_activeItem;
- NodeStyle *_activeNodeStyle;
- EdgeStyle *_activeEdgeStyle;
+ Style *_activeNodeStyle;
+ Style *_activeEdgeStyle;
//QString _activeCategory;
Style *activeStyle();
TikzStyles *_styles;