diff options
author | Noel Grandin <noel@peralex.com> | 2012-06-14 11:17:05 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-06-20 19:46:39 +0200 |
commit | 20aa56cc713866255475aa7fbc4218bf0a58b581 (patch) | |
tree | 78d4c54c53d278bf33847162a53ffa5d5765c9d4 /sfx2/source/view/viewfrm.cxx | |
parent | 59713265ece84a7775dfed209f4b42c53ec95a34 (diff) |
Convert SV_DECL_PTRARR(SfxViewShellArr_Impl) to std::vector
Change-Id: I91c33be902e20f72623c3d9642057db5eb6e30ba
Diffstat (limited to 'sfx2/source/view/viewfrm.cxx')
-rw-r--r-- | sfx2/source/view/viewfrm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx index 760225405601..c4ccb6dbaee2 100644 --- a/sfx2/source/view/viewfrm.cxx +++ b/sfx2/source/view/viewfrm.cxx @@ -2205,7 +2205,7 @@ sal_Bool SfxViewFrame::SwitchToViewShell_Impl return sal_False; } - DBG_ASSERT( SFX_APP()->GetViewFrames_Impl().Count() == SFX_APP()->GetViewShells_Impl().Count(), "Inconsistent view arrays!" ); + DBG_ASSERT( SFX_APP()->GetViewFrames_Impl().Count() == SFX_APP()->GetViewShells_Impl().size(), "Inconsistent view arrays!" ); return sal_True; } |