summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-17 08:55:50 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-17 08:55:50 +0100
commite75308f9099e3baebe7b283241e8b2fd799ef9ff (patch)
tree5a2ebb89c2ed508f0eecb0a37de111af5c56dae1 /sfx2
parent7ca7690f84cfab87ddd25fa1200b11625d1f7ece (diff)
Avoid compilation problem.
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/control/dispatch.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx
index 4d3f2d798a15..c1d41e0c90bd 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));