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
2f0a0367
Kaydet (Commit)
2f0a0367
authored
Ara 19, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
CID#982610 inefficient iterator usage confusing coverity
Change-Id: I79142f5f1723fa2db0e729cb0dacb201e41077bc
üst
47bda1cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
9 deletions
+1
-9
hwpreader.cxx
hwpfilter/source/hwpreader.cxx
+1
-9
No files found.
hwpfilter/source/hwpreader.cxx
Dosyayı görüntüle @
2f0a0367
...
...
@@ -3444,16 +3444,8 @@ void HwpReader::makeTable(TxtBox * hbox)
// ----------- cell ---------------- //
int
j
=
-
1
,
k
=
-
1
;
for
(
int
i
=
0
;
i
<
static_cast
<
int
>
(
tbl
->
cells
.
size
());
i
++
)
for
(
std
::
list
<
TCell
*>::
iterator
it
=
tbl
->
cells
.
begin
(),
aEnd
=
tbl
->
cells
.
end
();
it
!=
aEnd
;
++
it
)
{
std
::
list
<
TCell
*>::
iterator
it
=
tbl
->
cells
.
begin
();
for
(
int
ii
=
0
;
it
!=
tbl
->
cells
.
end
();
++
it
,
ii
++
)
{
if
(
ii
==
i
)
break
;
}
TCell
*
tcell
=
*
it
;
if
(
tcell
->
nRowIndex
>
j
)
{
...
...
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