diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-12-13 22:46:44 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-12-13 23:30:29 +0100 |
commit | 9b9c5a318abeaeeafb76ba7fcd09f350740f8ef3 (patch) | |
tree | 2a325695172fa07cd480089f490728068bcb8974 /svx/source/fmcomp | |
parent | 55edb3faf6212739d583889b692f802c4bf29467 (diff) |
cppcheck: Possible inefficient checking
Change-Id: I0d9f1eadb6dc863f1e5606ef2d166881e6cf6c0a
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r-- | svx/source/fmcomp/gridctrl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/fmcomp/gridctrl.cxx b/svx/source/fmcomp/gridctrl.cxx index 957d7b478028..789dc5fff947 100644 --- a/svx/source/fmcomp/gridctrl.cxx +++ b/svx/source/fmcomp/gridctrl.cxx @@ -3532,7 +3532,7 @@ void DbGridControl::DisconnectFromFields() return; ColumnFieldValueListeners* pListeners = (ColumnFieldValueListeners*)m_pFieldListeners; - while (pListeners->size()) + while (!pListeners->empty()) { #ifdef DBG_UTIL sal_Int32 nOldSize = pListeners->size(); |