Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
7ec010c8
Kaydet (Commit)
7ec010c8
authored
Mar 29, 2013
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use const_iterator and put them in for loop
Change-Id: I1dbfe5735580d940081298c372c12db8a3c3b3a3
üst
733f9f92
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
ChainablePropertySetInfo.cxx
comphelper/source/property/ChainablePropertySetInfo.cxx
+1
-3
MasterPropertySetInfo.cxx
comphelper/source/property/MasterPropertySetInfo.cxx
+1
-3
No files found.
comphelper/source/property/ChainablePropertySetInfo.cxx
Dosyayı görüntüle @
7ec010c8
...
@@ -84,9 +84,7 @@ Sequence< ::Property > SAL_CALL ChainablePropertySetInfo::getProperties()
...
@@ -84,9 +84,7 @@ Sequence< ::Property > SAL_CALL ChainablePropertySetInfo::getProperties()
maProperties
.
realloc
(
nSize
);
maProperties
.
realloc
(
nSize
);
Property
*
pProperties
=
maProperties
.
getArray
();
Property
*
pProperties
=
maProperties
.
getArray
();
PropertyInfoHash
::
iterator
aIter
=
maMap
.
begin
();
for
(
PropertyInfoHash
::
const_iterator
aIter
(
maMap
.
begin
()),
aEnd
(
maMap
.
end
());
aIter
!=
aEnd
;
++
aIter
,
++
pProperties
)
const
PropertyInfoHash
::
iterator
aEnd
=
maMap
.
end
();
for
(
;
aIter
!=
aEnd
;
++
aIter
,
++
pProperties
)
{
{
PropertyInfo
*
pInfo
=
(
*
aIter
).
second
;
PropertyInfo
*
pInfo
=
(
*
aIter
).
second
;
...
...
comphelper/source/property/MasterPropertySetInfo.cxx
Dosyayı görüntüle @
7ec010c8
...
@@ -101,9 +101,7 @@ Sequence< ::Property > SAL_CALL MasterPropertySetInfo::getProperties()
...
@@ -101,9 +101,7 @@ Sequence< ::Property > SAL_CALL MasterPropertySetInfo::getProperties()
maProperties
.
realloc
(
nSize
);
maProperties
.
realloc
(
nSize
);
Property
*
pProperties
=
maProperties
.
getArray
();
Property
*
pProperties
=
maProperties
.
getArray
();
PropertyDataHash
::
iterator
aIter
=
maMap
.
begin
();
for
(
PropertyDataHash
::
const_iterator
aIter
(
maMap
.
begin
()),
aEnd
(
maMap
.
end
())
;
aIter
!=
aEnd
;
++
aIter
,
++
pProperties
)
const
PropertyDataHash
::
iterator
aEnd
=
maMap
.
end
();
for
(
;
aIter
!=
aEnd
;
++
aIter
,
++
pProperties
)
{
{
PropertyInfo
*
pInfo
=
(
*
aIter
).
second
->
mpInfo
;
PropertyInfo
*
pInfo
=
(
*
aIter
).
second
->
mpInfo
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment