diff options
author | Wael El Oraiby <wael.eloraiby@gmail.com> | 2013-05-20 21:00:17 -0400 |
---|---|---|
committer | Wael El Oraiby <wael.eloraiby@gmail.com> | 2013-05-20 21:00:17 -0400 |
commit | e24584da2090d7df2a1abd902deca0f88879d436 (patch) | |
tree | c1f8360c41bc84285d306de33e34111476cdf3df /main.cpp | |
parent | 85b743e651de927f9fe0491aa45bb4acea2ee733 (diff) |
first version - missing lam alef ligature
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..24a397b --- /dev/null +++ b/main.cpp @@ -0,0 +1,11 @@ +#include <QApplication> +#include "mainwindow.h" + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} |