diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-02 22:57:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-02 22:57:45 +0200 |
commit | 1754c4d2abaf4360f973973035e51ba1685847bb (patch) | |
tree | f6014fec2f315a80e487fb3e43bf3ce5a3476a22 /vcl/osx | |
parent | 7a65f6c524a224c26bf6f4c065fdc5aab81724d9 (diff) |
loplugin:loopvartoosmall
Change-Id: I08c484c54e27c55157836d68a28d2a0e580499d9
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/salmenu.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/salmenu.cxx b/vcl/osx/salmenu.cxx index 63fb8efb5c51..0abc5fe3ad9c 100644 --- a/vcl/osx/salmenu.cxx +++ b/vcl/osx/salmenu.cxx @@ -439,7 +439,7 @@ void AquaSalMenu::setMainMenu() { unsetMainMenu(); // insert our items - for( unsigned int i = 0; i < maItems.size(); i++ ) + for( std::vector<AquaSalMenuItem *>::size_type i = 0; i < maItems.size(); i++ ) { NSMenuItem* pItem = maItems[i]->mpMenuItem; [mpMenu insertItem: pItem atIndex: i+1]; |