-- 
Pozdrawiam,
Mariusz Dykerek

diff --git a/linguistic/source/dlistimp.cxx b/linguistic/source/dlistimp.cxx
index e824888..316d86d 100644
--- a/linguistic/source/dlistimp.cxx
+++ b/linguistic/source/dlistimp.cxx
@@ -608,7 +608,7 @@ void SAL_CALL
             pDicEvtLstnrHelper->DisposeAndClear( aEvtObj );
 
         //! avoid creation of dictionaries if not already done
-        if (aDicList.size() > 0)
+        if ( !aDicList.empty() )
         {
             DictionaryVec_t& rDicList = GetOrCreateDicList();
             size_t nCount = rDicList.size();
@@ -720,7 +720,7 @@ void DicList::SaveDics()
 {
     // save dics only if they have already been used/created.
     //! don't create them just for the purpose of saving them !
-    if (aDicList.size() > 0)
+    if ( !aDicList.empty() )
     {
         // save (modified) dictionaries
         DictionaryVec_t& rDicList = GetOrCreateDicList();
diff --git a/linguistic/source/dlistimp.hxx b/linguistic/source/dlistimp.hxx
index 4eb9a1a..b4de818 100644
--- a/linguistic/source/dlistimp.hxx
+++ b/linguistic/source/dlistimp.hxx
@@ -89,7 +89,7 @@ class DicList :
     void                _CreateDicList();
     DictionaryVec_t &   GetOrCreateDicList()
                         {
-                            if (!bInCreation && aDicList.size() == 0)
+                            if ( !bInCreation && aDicList.empty() )
                                 _CreateDicList();
                             return aDicList;
                         }
_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice

Reply via email to