]> rtime.felk.cvut.cz Git - omk.git/blobdiff - tests/qt/qtapp/qtapp.cxx
Convert test files to scripts that recreate them
[omk.git] / tests / qt / qtapp / qtapp.cxx
diff --git a/tests/qt/qtapp/qtapp.cxx b/tests/qt/qtapp/qtapp.cxx
deleted file mode 100644 (file)
index 9f95511..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <QApplication>
-#include <QPushButton>
-#include <header.h>
-
- int main(int argc, char *argv[])
- {
-     QApplication app(argc, argv);
-
-     some_function(SOME_CONST);
-     QPushButton hello("Hello world!");
-     hello.resize(100, 30);
-
-     hello.show();
-     return app.exec();
- }