On Saturday 09 November 2002 22:18, Curtis Hildebrand wrote:
> On Saturday 09 November 2002 01:00, Robert Fox wrote:
> > I have Evolution-1.1.90-1mdk working just fine here on several
> > machines. Maybe you didn't run the "killev" before you ran it the first
> > time?
> >
> > Maybe you should reboot and try it again?
> >
> > I had a problem with the spell checker before I realized a rogue process
> > was messing things up.
>
> Nope. killev makes no difference. I've tried uninstalling and
> reinstalling it--still crashes. Removed my ~/evolution -- also no
> difference.
>
> /curtis
Hey Fred,
Is it possible to get evolution rebuilt with the attached patch. It's
supposed to fix this problem. Bug was filed under:
http://bugzilla.ximian.com/show_bug.cgi?id=33554
/curtis
(The attached file is a diff from evolution CVS. The original patch was
posted to evo-patches list, but I'm not a member and there are no recent
archives.)
RCS file: /cvs/gnome/evolution/mail/mail-composer-prefs.c,v
diff -u -r1.38 -r1.39
--- mail-composer-prefs.c 2002/11/15 17:31:52 1.38
+++ mail-composer-prefs.c 2002/11/18 17:05:59 1.39
@@ -746,8 +746,13 @@
CORBA_exception_init (&ev);
prefs->language_seq = GNOME_Spell_Dictionary_getLanguages (dict, &ev);
+ if (ev._major != CORBA_NO_EXCEPTION)
+ prefs->language_seq = NULL;
CORBA_exception_free (&ev);
+ if (prefs->language_seq == NULL)
+ return FALSE;
+
gconf_client_add_dir (prefs->gconf, GNOME_SPELL_GCONF_DIR, GCONF_CLIENT_PRELOAD_NONE, NULL);
spell_setup (prefs);