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
80bb0a4f
Kaydet (Commit)
80bb0a4f
authored
Haz 23, 2017
tarafından
Samuel Mehrbrodt
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Gpg key listing: Use range based for loop
Change-Id: Idc7b39f751b2572f5ddd077aaad86a1f7b4b9a5d
üst
91ffe409
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
SecurityEnvironment.cxx
xmlsecurity/source/gpg/SecurityEnvironment.cxx
+4
-4
No files found.
xmlsecurity/source/gpg/SecurityEnvironment.cxx
Dosyayı görüntüle @
80bb0a4f
...
@@ -89,10 +89,10 @@ Sequence< Reference < XCertificate > > SecurityEnvironmentGpg::getPersonalCertif
...
@@ -89,10 +89,10 @@ Sequence< Reference < XCertificate > > SecurityEnvironmentGpg::getPersonalCertif
}
}
Sequence
<
Reference
<
XCertificate
>
>
xCertificateSequence
(
certsList
.
size
());
Sequence
<
Reference
<
XCertificate
>
>
xCertificateSequence
(
certsList
.
size
());
std
::
list
<
CertificateImpl
*
>::
iterator
xcertIt
;
int
i
=
0
;
int
i
;
for
(
auto
const
&
cert
:
certsList
)
{
for
(
i
=
0
,
xcertIt
=
certsList
.
begin
();
xcertIt
!=
certsList
.
end
();
++
xcertIt
,
++
i
)
xCertificateSequence
[
i
++
]
=
cert
;
xCertificateSequence
[
i
]
=
*
xcertIt
;
}
return
xCertificateSequence
;
return
xCertificateSequence
;
}
}
...
...
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