summaryrefslogtreecommitdiff
path: root/tikzit/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/main.cpp')
-rw-r--r--tikzit/main.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/tikzit/main.cpp b/tikzit/main.cpp
index b48f94e..7ece416 100644
--- a/tikzit/main.cpp
+++ b/tikzit/main.cpp
@@ -1,11 +1,15 @@
#include "mainwindow.h"
+#include "toolpalette.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
- MainWindow w;
- w.show();
+ MainWindow *w = new MainWindow();
+ w->show();
+
+ ToolPalette *tp = new ToolPalette();
+ tp->show();
return a.exec();
}