[Libreoffice-commits] .: sfx2/source
Stephan Bergmann
sbergmann at kemper.freedesktop.org
Mon Jan 16 23:56:03 PST 2012
sfx2/source/control/dispatch.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit e75308f9099e3baebe7b283241e8b2fd799ef9ff
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Jan 17 08:55:50 2012 +0100
Avoid compilation problem.
diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx
index 4d3f2d7..c1d41e0 100644
--- a/sfx2/source/control/dispatch.cxx
+++ b/sfx2/source/control/dispatch.cxx
@@ -572,7 +572,7 @@ sal_Bool SfxDispatcher::CheckVirtualStack( const SfxShell& rShell, sal_Bool bDee
SFX_STACK(SfxDispatcher::CheckVirtualStack);
SfxShellStack_Impl aStack( pImp->aStack );
- for(std::deque<SfxToDo_Impl>::const_reverse_iterator i = pImp->aToDoStack.rbegin(); i != pImp->aToDoStack.rend(); ++i)
+ for(std::deque<SfxToDo_Impl>::reverse_iterator i = pImp->aToDoStack.rbegin(); i != pImp->aToDoStack.rend(); ++i)
{
if(i->bPush)
aStack.Push(static_cast<SfxShell*>(i->pCluster));
More information about the Libreoffice-commits
mailing list