diff options
author | Pavel Janík <paveljanik@apache.org> | 2013-11-26 20:36:34 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-12-02 10:27:09 +0000 |
commit | 362c8d67e1cb8920bf179b52c50b5997d32eb296 (patch) | |
tree | a34ca964da76432c7f8577123ed3e3afb72176e8 | |
parent | 76c549eb01dcb7b5bf28a271ce00e386f3d388ba (diff) |
WaE: compare unsigned values.
(cherry picked from commit e215b94aea58527bf76db44f0985b467502d457b)
-rw-r--r-- | sw/source/core/access/accmap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/access/accmap.cxx b/sw/source/core/access/accmap.cxx index cdb73ca65b8f..ac86219286c2 100644 --- a/sw/source/core/access/accmap.cxx +++ b/sw/source/core/access/accmap.cxx @@ -1490,7 +1490,7 @@ void SwAccessibleMap::DoInvalidateShapeSelection(sal_Bool bInvalidateFocusMode / ++pShape; } - const int SELECTION_WITH_NUM =10; + const unsigned int SELECTION_WITH_NUM = 10; if (vecxShapeAdd.size() > SELECTION_WITH_NUM ) { uno::Reference< XAccessible > xDoc = GetDocumentView( ); |