Revision: 735 Author: ntrel Date: 2006-08-18 09:17:38 -0700 (Fri, 18 Aug 2006) ViewCVS: http://svn.sourceforge.net/geany/?rev=735&view=rev
Log Message: ----------- Fix building on win32 - thanks to C?\225?\187?\167 V?\196?\131n Chu?\225?\187?\145i
Modified Paths: -------------- trunk/ChangeLog trunk/src/main.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2006-08-18 11:46:35 UTC (rev 734) +++ trunk/ChangeLog 2006-08-18 16:17:38 UTC (rev 735) @@ -2,6 +2,7 @@
* src/keyfile.c: Fix a small memory leak in configuration_load. * src/dialogs.c: Change Don't save button icon and add mnemonic. + * src/main.c: Fix building on win32 - thanks to Củ Văn Chuối.
2006-08-17 Nick Treleaven nick.treleaven@btinternet.com
Modified: trunk/src/main.c =================================================================== --- trunk/src/main.c 2006-08-18 11:46:35 UTC (rev 734) +++ trunk/src/main.c 2006-08-18 16:17:38 UTC (rev 735) @@ -569,10 +569,8 @@
config_dir_result = setup_config_dir(); // handle fifo - app->fifo_ioc = NULL; #ifdef HAVE_FIFO - if (! ignore_fifo) - app->fifo_ioc = create_fifo(argc, argv, app->configdir); + app->fifo_ioc = (ignore_fifo) ? NULL : create_fifo(argc, argv, app->configdir); #endif
gtk_init(&argc, &argv);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.