The build-time and run-time versions were swapped in the output.

2009-03-16  Tor Lillqvist  <tml@iki.fi>

	* app/version.c (gimp_show_library_version): The build-time and
	run-time versions were swapped in the output.


svn path=/trunk/; revision=28160
This commit is contained in:
Tor Lillqvist 2009-03-16 13:16:07 +00:00 committed by Tor Lillqvist
parent 2e7c80384b
commit 458d6439ac
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-03-16 Tor Lillqvist <tml@iki.fi>
* app/version.c (gimp_show_library_version): The build-time and
run-time versions were swapped in the output.
2009-03-14 Sven Neumann <sven@gimp.org>
Bug 566443 diagonal method guidelines for crop tool

View File

@ -61,7 +61,7 @@ gimp_show_library_version (const gchar *package,
/* show versions of libraries used by GIMP */
g_print (_("using %s version %s (compiled against version %s)"),
package, build_time_version, run_time_version);
package, run_time_version, build_time_version);
g_print ("\n");
g_free (run_time_version);