[Libreoffice-commits] .: cui/source

Andras Timar timar at kemper.freedesktop.org
Mon Feb 27 02:10:21 PST 2012


 cui/source/tabpages/autocdlg.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 8e750a2d9c653e0693738c847fe2ee2a8ab04052
Author: Szabolcs Dezsi <dezsiszabi at hotmail.com>
Date:   Fri Feb 24 16:42:35 2012 +0100

    Reduced loadtime of autocorrect tables

diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx
index 93a370f..cdd56d0 100644
--- a/cui/source/tabpages/autocdlg.cxx
+++ b/cui/source/tabpages/autocdlg.cxx
@@ -1213,7 +1213,7 @@ void OfaAutocorrReplacePage::RefillReplaceBox(sal_Bool bFromReset,
     {
         SvxAutoCorrect* pAutoCorrect = SvxAutoCorrCfg::Get().GetAutoCorrect();
         SvxAutocorrWordList* pWordList = pAutoCorrect->LoadAutocorrWordList(eLang);
-
+        aReplaceTLB.SetUpdateMode(sal_False);
         for(sal_uInt16 i = 0; i < pWordList->Count(); i++)
         {
             SvxAutocorrWordPtr pWordPtr = pWordList->GetObject(i);
@@ -1234,7 +1234,7 @@ void OfaAutocorrReplacePage::RefillReplaceBox(sal_Bool bFromReset,
         }
         aNewReplacePB.Enable(sal_False);
         aDeleteReplacePB.Enable(sal_False);
-
+        aReplaceTLB.SetUpdateMode(sal_True);
     }
 
     SfxViewShell* pViewShell = SfxViewShell::Current();


More information about the Libreoffice-commits mailing list