diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-08-19 17:45:31 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-08-19 20:43:49 +0000 |
commit | 082a7faeedb03c790ba5fe03b466b7a45a822c35 (patch) | |
tree | bf94a241f903ebbb06b20f7229253611c4f12ab5 /sc/source/ui/unoobj | |
parent | f15cbf2451d08ccddde9643c9f926a322f9f9917 (diff) |
sc: replace boost::ptr_set with std::set<std::unique_ptr>
Change-Id: I966069726fd7dbc57e03e93514bec62d8bbb2ba0
Reviewed-on: https://gerrit.libreoffice.org/17862
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sc/source/ui/unoobj')
-rw-r--r-- | sc/source/ui/unoobj/condformatuno.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/condformatuno.cxx b/sc/source/ui/unoobj/condformatuno.cxx index 9de1449e2d05..da35ab69644b 100644 --- a/sc/source/ui/unoobj/condformatuno.cxx +++ b/sc/source/ui/unoobj/condformatuno.cxx @@ -379,7 +379,7 @@ uno::Sequence<uno::Reference<sheet::XConditionalFormat> > ScCondFormatsObj::getC uno::Sequence<uno::Reference<sheet::XConditionalFormat> > aCondFormats(n); sal_Int32 i = 0; for (ScConditionalFormatList::const_iterator itr = pFormatList->begin(); itr != pFormatList->end(); ++itr, ++i) { - uno::Reference<sheet::XConditionalFormat> xCondFormat(new ScCondFormatObj(mpDocShell, this, itr->GetKey())); + uno::Reference<sheet::XConditionalFormat> xCondFormat(new ScCondFormatObj(mpDocShell, this, (*itr)->GetKey())); aCondFormats[i] = xCondFormat; } |