diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-08-19 15:45:57 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-08-19 19:36:18 +0000 |
commit | b5ae7dbc871df57686a603dfa99e8179a0e3a4b8 (patch) | |
tree | 23970f3c875bf1c2244e4dc7f37a86c74ed40cbb /sc/source/ui/navipi/content.cxx | |
parent | 013efe75eba3d209a7bd072d608126dac6fa191c (diff) |
sc: replace boost::ptr_set with std::set<std::unique_ptr>
Change-Id: I93bdb33a442a358b0067d57499b11d73bfbaa2d9
Reviewed-on: https://gerrit.libreoffice.org/17860
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sc/source/ui/navipi/content.cxx')
-rw-r--r-- | sc/source/ui/navipi/content.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/navipi/content.cxx b/sc/source/ui/navipi/content.cxx index ab70ebcaf7ed..5dd7d765b7db 100644 --- a/sc/source/ui/navipi/content.cxx +++ b/sc/source/ui/navipi/content.cxx @@ -902,7 +902,7 @@ void ScContentTree::GetDbNames() ScDBCollection::NamedDBs::const_iterator itr = rDBs.begin(), itrEnd = rDBs.end(); for (; itr != itrEnd; ++itr) { - const OUString& aStrName = itr->GetName(); + const OUString& aStrName = (*itr)->GetName(); InsertContent(SC_CONTENT_DBAREA, aStrName); } } |