[Libreoffice-commits] .: sw/source
Julien Nabet
serval2412 at kemper.freedesktop.org
Wed Sep 21 13:31:11 PDT 2011
sw/source/core/docnode/ndtbl.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 8819edb0214c79be86c89f64865d0cc6e8c79f15
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Wed Sep 21 22:30:05 2011 +0200
Some cppcheck cleaning
diff --git a/sw/source/core/docnode/ndtbl.cxx b/sw/source/core/docnode/ndtbl.cxx
index eceaaa9..4054919 100644
--- a/sw/source/core/docnode/ndtbl.cxx
+++ b/sw/source/core/docnode/ndtbl.cxx
@@ -1049,7 +1049,7 @@ SwTableNode* SwNodes::TextToTable( const SwNodeRange& rRange, sal_Unicode cCh,
}
}
- if( aPosArr.size() )
+ if( !aPosArr.empty() )
{
SwTableLines& rLns = pTable->GetTabLines();
sal_uInt16 nLastPos = 0;
@@ -1368,7 +1368,7 @@ SwTableNode* SwNodes::TextToTable( const SwNodes::TableRanges_t & rTableNodes,
// die Tabelle ausgleichen, leere Sections einfuegen
sal_uInt16 n;
- if( aPosArr.size() )
+ if( !aPosArr.empty() )
{
SwTableLines& rLns = pTable->GetTabLines();
sal_uInt16 nLastPos = 0;
More information about the Libreoffice-commits
mailing list