Kaydet (Commit) b8ebdae0 authored tarafından Douglas Mencken's avatar Douglas Mencken Kaydeden (comit) Caolán McNamara

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/8223Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst f72ba183
...@@ -2416,7 +2416,7 @@ sal_Bool SfxDispatcher::IsUpdated_Impl() const ...@@ -2416,7 +2416,7 @@ sal_Bool SfxDispatcher::IsUpdated_Impl() const
void SfxDispatcher::SetDisableFlags( sal_uInt32 nFlags ) void SfxDispatcher::SetDisableFlags( sal_uInt32 nFlags )
{ {
pImp->nDisableFlags = 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 ); (*it)->SetDisableFlags( nFlags );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment