0.9.3claws82

* src/plugins/trayicon/trayicon.c
        process pending events before unloading the plugin

(closes Bug 196 Unloading Trayicon plugin crashes Sylpheed-Claws)
This commit is contained in:
Christoph Hohmann 2003-07-30 20:16:07 +00:00
parent 58030682a7
commit 90342b5cf1
3 changed files with 17 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2003-07-30 [christoph] 0.9.3claws82
* src/plugins/trayicon/trayicon.c
process pending events before unloading the plugin
(closes Bug 196 Unloading Trayicon plugin crashes Sylpheed-Claws)
2003-07-30 [alfons] 0.9.3claws81
* src/common/hooks.c
@ -111,6 +118,9 @@
* sync with 0.9.3cvs17
see ChangeLog 2003-07-23
(closes Bug 234 segmentation fault after sending out mail via
smtp(auth))
2003-07-28 [paul] 0.9.3claws65
* po/es.po
@ -485,6 +495,9 @@
* src/plugins/spamassassin/spamassassin.c
remove setlocale workaround (fixed in libspamc)
(closes Bug Bug 184 Entering non-ascii character deletes previous char
if spell checking enabled)
2003-07-17 [alfons] 0.9.3claws19
* src/common/hooks.[ch]

View file

@ -11,7 +11,7 @@ MINOR_VERSION=9
MICRO_VERSION=3
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=81
EXTRA_VERSION=82
if test $EXTRA_VERSION -eq 0; then
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws
else

View file

@ -195,6 +195,9 @@ void plugin_done(void)
gtk_widget_destroy(GTK_WIDGET(trayicon));
hooks_unregister_hook(FOLDER_ITEM_UPDATE_HOOKLIST, hook_id);
while (gtk_events_pending())
gtk_main_iteration();
}
const gchar *plugin_name(void)