[Libreoffice-commits] .: linguistic/source
Caolán McNamara
caolan at kemper.freedesktop.org
Thu Feb 16 04:24:57 PST 2012
linguistic/source/dlistimp.cxx | 4 ++--
linguistic/source/dlistimp.hxx | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 77eaa51bc47ff6b02f319053d4ca5aaf37b28f37
Author: Mariusz Dykierek <mariuszdykierek at gmail.com>
Date: Thu Feb 16 12:20:09 2012 +0000
possible inefficient checking for emptiness
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;
}
More information about the Libreoffice-commits
mailing list