summaryrefslogtreecommitdiff
path: root/svl/source/items/itemiter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/itemiter.cxx')
-rw-r--r--svl/source/items/itemiter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/itemiter.cxx b/svl/source/items/itemiter.cxx
index a42a90bc2358..2cc6ae36212d 100644
--- a/svl/source/items/itemiter.cxx
+++ b/svl/source/items/itemiter.cxx
@@ -32,7 +32,7 @@ SfxItemIter::SfxItemIter( const SfxItemSet& rItemSet )
}
else
{
- SfxItemArray ppFnd = m_rSet.m_pItems;
+ SfxPoolItem const** ppFnd = m_rSet.m_pItems.get();
// Find the first Item that is set
for (m_nStart = 0; !*(ppFnd + m_nStart ); ++m_nStart)
@@ -53,7 +53,7 @@ SfxItemIter::~SfxItemIter()
const SfxPoolItem* SfxItemIter::NextItem()
{
- SfxItemArray ppFnd = m_rSet.m_pItems;
+ SfxPoolItem const** ppFnd = m_rSet.m_pItems.get();
if (m_nCurrent < m_nEnd)
{
core/commit/odk/examples/DevelopersGuide/UCB?h=cib-6.4-27&id=0c18bedb7328493040c1a20822b345e624d6041f'>java: 'final static' to 'static final'Noel Grandin this is the canonical order, and it makes the code easier to read Change-Id: I272e7f1e140296e582702b6dbf77a03eefb65470 Reviewed-on: https://gerrit.libreoffice.org/16242 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: David Ostrovsky <david@ostrovsky.org> 2014-12-10java: remove comment noiseNoel Grandin Change-Id: If6347197ff4436b4edd06e6e62d8e8e6fe1d4db6 Reviewed-on: https://gerrit.libreoffice.org/13408 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com> 2014-11-12Fix common typos. No automatic tools. Handmade…Andrea Gelmini Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959 Reviewed-on: https://gerrit.libreoffice.org/12164 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com> 2014-08-19java: no need to instantiate String objects directlyNoel Grandin Change-Id: I7610774c94bf673ed3b574ffce04c4ee6ca93c03 2014-08-19java: use Boolean.valueOf instead of instantiating Boolean objectsNoel Grandin Change-Id: Ie41d6b0170a035a694dd270c311a137fd1810e74 2014-08-13java: reduce scope, make some methods privateNoel Grandin found by UCDetector Change-Id: Ib1425edde146193a65c242dc159b7e3fbf0e4a2e 2014-08-13java: reduce scope, make fields privateNoel Grandin found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6 2014-08-12java: fix broken javadoc tagsNoel Grandin Change-Id: I43d25ba49b758739ee8dc891b0db3e527004ec8b 2014-08-12java: remove useless javadoc tagsNoel Grandin that are not conveying any useful information Change-Id: Ic37934b8cc376fcdcb3d295232452f411dfd43b1 2014-08-12java: remove unnecessary semi-colonsNoel Grandin Change-Id: I2eab5efff06ced09459adb407dbf789b8042a948 2014-08-12java: remove unused fieldsNoel Grandin Change-Id: I8d9196067d397dbd2c649b6c99011c193a60424f