Added call to "close_convert()" when quitting.

This commit is contained in:
William Kendrick 2003-07-03 10:29:16 +00:00
parent a4c12886e1
commit 13dfeb57b0
2 changed files with 8 additions and 3 deletions

View file

@ -7,7 +7,7 @@ bill@newbreedsoftware.com
http://www.newbreedsoftware.com/tuxpaint/ http://www.newbreedsoftware.com/tuxpaint/
2003.Jun.29 (0.9.12) [cvs] 2003.Jul.3 (0.9.12) [cvs]
* Fixed Mac OS X #include typo. * Fixed Mac OS X #include typo.
Darrell Walisser <walisser@mac.com> Darrell Walisser <walisser@mac.com>
@ -18,6 +18,9 @@ http://www.newbreedsoftware.com/tuxpaint/
* French translation update. * French translation update.
Jacques Chion <Jacques.Chion@wanadoo.fr> Jacques Chion <Jacques.Chion@wanadoo.fr>
* Added call to close iconv when quitting.
John Popplewell <john@johnnypops.demon.co.uk>
2003.Jun.17 (0.9.11) 2003.Jun.17 (0.9.11)
* Windows bugfixes. * Windows bugfixes.

View file

@ -7,12 +7,12 @@
bill@newbreedsoftware.com bill@newbreedsoftware.com
http://www.newbreedsoftware.com/tuxpaint/ http://www.newbreedsoftware.com/tuxpaint/
June 14, 2002 - June 22, 2003 June 14, 2002 - July 3, 2003
*/ */
#define VER_VERSION "0.9.12" #define VER_VERSION "0.9.12"
#define VER_DATE "2003.06.22" #define VER_DATE "2003.07.03"
/* #define DEBUG */ /* #define DEBUG */
@ -7668,6 +7668,8 @@ void cleanup(void)
TTF_Quit(); TTF_Quit();
SDL_Quit(); SDL_Quit();
convert_close();
} }