From 5baef2f4d8cc6e3b27660a044980b9a4ce14d17b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 14 Jun 2012 12:01:17 +0200 Subject: Convert SV_DECL_PTRARR(SfxObjectShellArr_Impl) to std::vector Change-Id: I9f26d380526c63a8b86b42a5b0b74a7cfff71249 --- sfx2/source/appl/app.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sfx2/source/appl/app.cxx') diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx index 6d5f30bca0ad..8c85cf10adce 100644 --- a/sfx2/source/appl/app.cxx +++ b/sfx2/source/appl/app.cxx @@ -231,7 +231,7 @@ SfxApplication::SfxApplication() SfxApplication::~SfxApplication() { - OSL_ENSURE( GetObjectShells_Impl().Count() == 0, "Memory leak: some object shells were not removed!" ); + OSL_ENSURE( GetObjectShells_Impl().size() == 0, "Memory leak: some object shells were not removed!" ); Broadcast( SfxSimpleHint(SFX_HINT_DYING) ); -- cgit