| Summary: | Pausing spelling, editing a document then resuming causes the spell checker to correct the wrong text. | ||
|---|---|---|---|
| Product: | [Applications] kate | Reporter: | Alex W <bugs> | 
| Component: | general | Assignee: | KWrite Developers <kwrite-bugs-null> | 
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| 
        
          Description
        
        
          Alex W
        
        
        
        
          2006-01-26 17:10:01 UTC
        
       SVN commit 502998 by alund:
Make the spelling dialog modal. Given the way the spell checking is implemented, we cant have people typing away in the document during the spell check.
BUG: 120821
 M  +2 -2      katespell.cpp  
--- branches/KDE/3.5/kdelibs/kate/part/katespell.cpp #502997:502998
@@ -105,8 +105,8 @@
   else if ( mt == "text/html" || mt == "text/xml" )
     type = KSpell::HTML;
 
-  m_kspell = new KSpell( 0, i18n("Spellcheck"),
-                         this, SLOT(ready(KSpell *)), 0, true, false, type );
+  m_kspell = new KSpell( m_view, i18n("Spellcheck"),
+                         this, SLOT(ready(KSpell *)), 0, true, true, type );
 
   connect( m_kspell, SIGNAL(death()),
            this, SLOT(spellCleanDone()) );
 |