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
ca1456d3
Kaydet (Commit)
ca1456d3
authored
Agu 27, 2013
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bin bool + transform while into for loop + add end iterator (2)
Change-Id: Ic4b311c06b809507ac80de5df9851dc7f36c7caa
üst
591092d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
thumbnailviewacc.cxx
sfx2/source/control/thumbnailviewacc.cxx
+5
-6
No files found.
sfx2/source/control/thumbnailviewacc.cxx
Dosyayı görüntüle @
ca1456d3
...
...
@@ -823,18 +823,17 @@ void SAL_CALL ThumbnailViewItemAcc::removeAccessibleEventListener( const uno::Re
if
(
rxListener
.
is
()
)
{
::
std
::
vector
<
uno
::
Reference
<
accessibility
::
XAccessibleEventListener
>
>::
iterator
aIter
=
mxEventListeners
.
begin
();
sal_Bool
bFound
=
sal_False
;
::
std
::
vector
<
uno
::
Reference
<
accessibility
::
XAccessibleEventListener
>
>::
const_iterator
aEnd
=
mxEventListeners
.
end
();
while
(
!
bFound
&&
(
aIter
!=
mxEventListeners
.
end
()
)
)
for
(
::
std
::
vector
<
uno
::
Reference
<
accessibility
::
XAccessibleEventListener
>
>::
iterator
aIter
=
mxEventListeners
.
begin
();
aIter
!=
aEnd
;
++
aIter
)
{
if
(
*
aIter
==
rxListener
)
{
mxEventListeners
.
erase
(
aIter
);
b
Found
=
sal_True
;
b
reak
;
}
else
++
aIter
;
}
}
}
...
...
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