diff options
author | Nigel Hawkins <n.hawkins@gmx.com> | 2011-07-24 11:41:17 +0100 |
---|---|---|
committer | Nigel Hawkins <n.hawkins@gmx.com> | 2011-07-24 11:42:30 +0100 |
commit | 68b62652661bcd1afd80cd8388e3c434d30321b1 (patch) | |
tree | 1067552262391f5773742ec889dc854cae510bbf | |
parent | 8010f14c504a8cb8e28eee59eae9e23a481a1873 (diff) |
Fix signed/unsigned comparison warning on MAC in ndtbl.cxx.
LGPLv3+/MPL
-rw-r--r-- | sw/source/core/docnode/ndtbl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/docnode/ndtbl.cxx b/sw/source/core/docnode/ndtbl.cxx index f1a111fde1..76ca7eb784 100644 --- a/sw/source/core/docnode/ndtbl.cxx +++ b/sw/source/core/docnode/ndtbl.cxx @@ -354,7 +354,7 @@ const SwTable* SwDoc::InsertTable( const SwInsertTableOptions& rInsTblOpts, // sollte das ColumnArray die falsche Anzahl haben wird es ignoriert! if( pColArr && - (nCols + ( text::HoriOrientation::NONE == eAdjust ? 2 : 1 )) != pColArr->size() ) + (size_t)(nCols + ( text::HoriOrientation::NONE == eAdjust ? 2 : 1 )) != pColArr->size() ) pColArr = 0; } |