From 13dfeb57b0c0726795125c3e7337f81879db40d2 Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Thu, 3 Jul 2003 10:29:16 +0000 Subject: [PATCH] Added call to "close_convert()" when quitting. --- docs/CHANGES.txt | 5 ++++- src/tuxpaint.c | 6 ++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 3e32ca554..aec321c6e 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -7,7 +7,7 @@ bill@newbreedsoftware.com 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. Darrell Walisser @@ -18,6 +18,9 @@ http://www.newbreedsoftware.com/tuxpaint/ * French translation update. Jacques Chion + * Added call to close iconv when quitting. + John Popplewell + 2003.Jun.17 (0.9.11) * Windows bugfixes. diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 694f1295b..ba2a090b6 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -7,12 +7,12 @@ bill@newbreedsoftware.com 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_DATE "2003.06.22" +#define VER_DATE "2003.07.03" /* #define DEBUG */ @@ -7668,6 +7668,8 @@ void cleanup(void) TTF_Quit(); SDL_Quit(); + + convert_close(); }