diff options
author | Douglas Mencken <dougmencken@gmail.com> | 2014-02-25 09:55:55 -0500 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-25 16:21:27 +0000 |
commit | b8ebdae0345aa331cf6d6dabf40a6f26dc7d2371 (patch) | |
tree | d6f0240522ef4215b88971545a0f788b4244bbb8 /sfx2 | |
parent | f72ba183205634fb8490b1632059d3bec21901b9 (diff) |
Yet another one undefined comparison of 'const' and a 'non-const' iterators (hope the last one)
Change-Id: Iefcd1f5561e5a8cac4152f16e72e8f628e9204a5
Reviewed-on: https://gerrit.libreoffice.org/8223
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/control/dispatch.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx index 4a55580811e3..7c956e083f18 100644 --- a/sfx2/source/control/dispatch.cxx +++ b/sfx2/source/control/dispatch.cxx @@ -2416,7 +2416,7 @@ sal_Bool SfxDispatcher::IsUpdated_Impl() const void SfxDispatcher::SetDisableFlags( sal_uInt32 nFlags ) { pImp->nDisableFlags = nFlags; - for ( SfxShellStack_Impl::const_reverse_iterator it = pImp->aStack.rbegin(); it != pImp->aStack.rend(); ++it ) + for ( SfxShellStack_Impl::reverse_iterator it = pImp->aStack.rbegin(); it != pImp->aStack.rend(); ++it ) (*it)->SetDisableFlags( nFlags ); } |