On Mon, 7 Jun 2004, vellum wrote:
Win autobuild 5 June opened OK and appears normal. Autobuild 6 June does not open. Yields "Inkscape.exe has generated errors..." Autobuild 7 June...ditto.
Can someone else on Windows please confirm this? Downloads appeared normal in both cases.
Confirmed. I've committed a fix which is reproduced below. Ted, could you check it over?
Thanks
Carl
Index: main.cpp =================================================================== RCS file: /cvsroot/inkscape/inkscape/src/main.cpp,v retrieving revision 1.42 diff -u -r1.42 main.cpp --- main.cpp 7 Jun 2004 07:21:26 -0000 1.42 +++ main.cpp 7 Jun 2004 16:02:43 -0000 @@ -256,12 +256,7 @@ // now switch gettext back to UTF-8 (for GUI) bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
- -#ifdef WIN32 - Inkscape::Extension::Internal::PrintWin32::init(); -#endif - - inkscape_gtk_stock_init(); + inkscape_gtk_stock_init();
/* Set default icon */ if (g_file_test (INKSCAPE_DATADIR "/pixmaps/inkscape.png", (GFileTest)(G_FILE_TEST_IS_REGULAR | G_FILE_TEST_IS_SYMLINK))) { @@ -298,6 +293,11 @@ } }
+ +#ifdef WIN32 + Inkscape::Extension::Internal::PrintWin32::init(); +#endif + gtk_main();
#ifdef WIN32