diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-07-16 10:11:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-07-16 10:11:22 +0200 |
commit | 109ca5b630018dad9ad4001724abd410886974cd (patch) | |
tree | f1d4c17589e4c9c7c8ed2f6687b4948e54e05097 /svtools/source/contnr | |
parent | a9c4476cbb1babdc45695601e92e98ca5ac072a2 (diff) |
loplugin:loopvartoosmall
Change-Id: Iaeb3e12f9e83328c9ffd4718e7907bd7c7a39910
Diffstat (limited to 'svtools/source/contnr')
-rw-r--r-- | svtools/source/contnr/foldertree.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/contnr/foldertree.cxx b/svtools/source/contnr/foldertree.cxx index c1e038d43be1..5c8ee462705c 100644 --- a/svtools/source/contnr/foldertree.cxx +++ b/svtools/source/contnr/foldertree.cxx @@ -50,7 +50,7 @@ void FolderTree::FillTreeEntry( SvTreeListEntry* pEntry ) if ( SUCCESS == eResult ) { - for( unsigned int i = 0; i < aContent.size(); i++ ) + for( std::vector<SortingData_Impl *>::size_type i = 0; i < aContent.size(); i++ ) { if( aContent[i]->mbIsFolder ) { |