diff options
| author | Slagvi Public <JandotDarowskiattgmaildottcom> | 2013-06-18 13:14:09 +0000 |
|---|---|---|
| committer | Slagvi Public <JandotDarowskiattgmaildottcom> | 2013-06-18 13:14:09 +0000 |
| commit | 74651351d05898e961941e98ad68043028ce3a87 (patch) | |
| tree | 712604789db98b301c7d23a0182aee356b850c15 /src/templates/main.cpp | |
| parent | Fix layer selection so defs don't change layers, updated symbol text. (diff) | |
| download | inkscape-74651351d05898e961941e98ad68043028ce3a87.tar.gz inkscape-74651351d05898e961941e98ad68043028ce3a87.zip | |
First newFromTemplate commit. Some basic widgets mechanics
(bzr r12379.2.1)
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 |
