diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-27 23:21:19 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-27 23:21:19 +0200 |
commit | 526ea240d1ac049e44d4d017f11ed998d3cc9b35 (patch) | |
tree | 2c19ea36c709ea888d305ca7d65d84f677a51559 /sw/source/uibase/sidebar | |
parent | c7d7083a8785dba83ff23cb55043540baac6977d (diff) |
loplugin:loopvartoosmall
Change-Id: Ia13b26f937f4e18c895b278ee3032ae3771a9259
Diffstat (limited to 'sw/source/uibase/sidebar')
-rw-r--r-- | sw/source/uibase/sidebar/WrapPropertyPanel.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/sidebar/WrapPropertyPanel.cxx b/sw/source/uibase/sidebar/WrapPropertyPanel.cxx index 00c64353c639..17ec875d563b 100644 --- a/sw/source/uibase/sidebar/WrapPropertyPanel.cxx +++ b/sw/source/uibase/sidebar/WrapPropertyPanel.cxx @@ -203,7 +203,7 @@ void WrapPropertyPanel::UpdateSpacingLB() { if( (nLeft == nRight) && (nTop == nBottom) && (nLeft == nTop) ) { - for(sal_uInt16 i = 0; i < mpSpacingLB->GetEntryCount(); i++) + for(sal_Int32 i = 0; i < mpSpacingLB->GetEntryCount(); i++) { if(reinterpret_cast<sal_uLong>(mpSpacingLB->GetEntryData(i)) == nLeft ) { |