summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/app.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-14 12:01:17 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-20 19:46:39 +0200
commit5baef2f4d8cc6e3b27660a044980b9a4ce14d17b (patch)
tree2faf05a212ab16acf52b3cbce658b1d43d283c54 /sfx2/source/appl/app.cxx
parentaf50c7d9ce96de45d40e6c1462bf1682ce7572a5 (diff)
Convert SV_DECL_PTRARR(SfxObjectShellArr_Impl) to std::vector
Change-Id: I9f26d380526c63a8b86b42a5b0b74a7cfff71249
Diffstat (limited to 'sfx2/source/appl/app.cxx')
-rw-r--r--sfx2/source/appl/app.cxx2
1 files changed, 1 insertions, 1 deletions
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) );