diff options
author | deva <deva> | 2008-07-07 07:36:42 +0000 |
---|---|---|
committer | deva <deva> | 2008-07-07 07:36:42 +0000 |
commit | 12bd3e7ff088b097bf4e280161aee646fbbb50dc (patch) | |
tree | c8923c3b73fe578c95d45f99e6bcc36dbe2e72f5 /editor/editor.cc | |
parent | 678aba4c1fd1c9930ecda84a126f1bc7163dc29d (diff) |
Made actual widgets get dragged around
Diffstat (limited to 'editor/editor.cc')
-rw-r--r-- | editor/editor.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor.cc b/editor/editor.cc index 780b6dc..b2d418f 100644 --- a/editor/editor.cc +++ b/editor/editor.cc @@ -29,6 +29,8 @@ #include "toolbox.h" #include "macrowindow.h" +#include "widgetwrapper.h" + int main(int argc, char *argv[]) { QApplication app(argc, argv); @@ -36,6 +38,7 @@ int main(int argc, char *argv[]) Toolbox toolbox; MacroWindow macrowindow(Qt::Horizontal); macrowindow.resize(400, 300); + macrowindow.show(); return app.exec(); } |