diff options
Diffstat (limited to 'src/templates/main.cpp')
| -rw-r--r-- | src/templates/main.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/templates/main.cpp b/src/templates/main.cpp new file mode 100644 index 000000000..1ff93822c --- /dev/null +++ b/src/templates/main.cpp @@ -0,0 +1,14 @@ +#include <gtkmm/main.h> + +#include "newfromtemplate.h" + +int main (int argc, char *argv[]) +{ + Gtk::Main kit(argc, argv); + + NewFromTemplate dialog; + dialog.run(); + //Gtk::Main::run(dialog); + + return 0; +}
\ No newline at end of file |
