﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5417	Spell checker window doesn't close after correcting words	Christian		"Using WinXP, IE7.0, CKEditor 3.2

When having some misspelled words and running the Aspell type spellchecker, the check dialog won't close when finished.
It works with WinXP, FF, CKEditor3.2

It seems as if I add an alert in aspell.js, 
{{{
function oSpeller_OnFinished(dialog, numberOCorrections)
{
        if (numberOCorrections > 0)
        {
                 editor.focus();
                 editor.fire('saveSnapshot'); // Best way I could find to trigger undo steps.
                 dialog.getParentEditor().setData(document.getElementById(textareaId).value);
===>>>           alert (""oSpeller_OnFinished"" );
                 editor.fire('saveSnapshot'); // But there's a blank one between!
         }
         dialog.hide();
}
}}}
it works!? When I remove it, the dialog stays open.

If I run the spellcheck with no misspelled words, it closes (since numberOCorrections is 0 i suppose).

Reproducible: every time.
[[BR]]
Add editor to page
[[BR]]
Enter misspelled words
[[BR]]
Start spellchecker dialog
[[BR]]
Replace words
[[BR]]
When finished, dialog stays open."	Bug	closed	Normal		UI : Spell Checker		invalid		
