1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2025-04-21 12:27:27 +03:00

- started functions to dump .fpd files (automatic labeling doesn't quite work

yet)
- don't pass argc, argv to gui_main. They've been harvested before.



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5388 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner
2009-08-05 10:35:48 +00:00
parent 3db91b5c1b
commit cdcd2f36b3
8 changed files with 358 additions and 5 deletions
+4 -1
View File
@@ -50,8 +50,11 @@ int main(int argc, char **argv)
if (!instantiate())
return 1;
// inst_debug();
error = gui_main(argc, argv);
error = gui_main();
if (error)
return error;
// dump(stdout);
return 0;
}