summaryrefslogtreecommitdiff
path: root/tikzit/main.cpp
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2017-01-20 11:05:36 +0100
committerAleks Kissinger <aleks0@gmail.com>2017-01-20 11:05:36 +0100
commit36ccd03c70c305e155e00e663da725546f8f2fd9 (patch)
treeb50684a657657f00acb613cbedf6289db0f59525 /tikzit/main.cpp
parent716aadc00c1a03e43c246a72be4758fcdf809fe0 (diff)
added GraphElementProperty
Diffstat (limited to 'tikzit/main.cpp')
-rw-r--r--tikzit/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tikzit/main.cpp b/tikzit/main.cpp
index 50c6978..c6b6ecd 100644
--- a/tikzit/main.cpp
+++ b/tikzit/main.cpp
@@ -1,5 +1,6 @@
#include "mainwindow.h"
#include "toolpalette.h"
+#include "propertypalette.h"
#include "graph.h"
#include <QApplication>
@@ -14,9 +15,8 @@ int main(int argc, char *argv[])
tp->show();
//w->addToolBar(Qt::LeftToolBarArea, tp);
- Graph *g = new Graph;
- Node *n = g->addNode();
- delete g;
+ PropertyPalette *pp = new PropertyPalette;
+ pp->show();
return a.exec();
}