summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-07-15 15:58:55 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2012-07-16 19:43:23 +0200
commit5fac4f2baf2eb08948ceb0abdca18510de8fbdd5 (patch)
treec7559f4ba2cc0927eee323b7d67de513e69e58b3 /main.cpp
downloadalpine-usb-creator-5fac4f2baf2eb08948ceb0abdca18510de8fbdd5.tar.bz2
alpine-usb-creator-5fac4f2baf2eb08948ceb0abdca18510de8fbdd5.tar.xz
Initial commit
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..73c7320
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,12 @@
+#include "main.h"
+#include "dialog.h"
+
+IMPLEMENT_APP(MyApp)
+
+bool MyApp::OnInit()
+{
+ Dialog *d = new Dialog((wxWindow *)NULL);
+ d->Show(true);
+ return true;
+}
+