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
f268b04b
Kaydet (Commit)
f268b04b
authored
Ock 14, 2014
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: unused function 'advanceNonEmptyBlock'
Change-Id: I38b91f9e02c1addd8a0ef427b7b09cdf1a04ee95
üst
df924362
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
26 deletions
+0
-26
dociter.cxx
sc/source/core/data/dociter.cxx
+0
-26
No files found.
sc/source/core/data/dociter.cxx
Dosyayı görüntüle @
f268b04b
...
@@ -1848,32 +1848,6 @@ bool ScHorizontalCellIterator::GetPos( SCCOL& rCol, SCROW& rRow )
...
@@ -1848,32 +1848,6 @@ bool ScHorizontalCellIterator::GetPos( SCCOL& rCol, SCROW& rRow )
return
mbMore
;
return
mbMore
;
}
}
namespace
{
inline
bool
advanceNonEmptyBlock
(
size_t
nRow
,
sc
::
CellStoreType
::
const_iterator
&
rPos
,
const
sc
::
CellStoreType
::
const_iterator
&
rEnd
)
{
assert
(
rPos
->
type
!=
sc
::
element_type_empty
);
if
(
nRow
<
rPos
->
position
+
rPos
->
size
)
// Block already contains the specified row. Nothing to do.
return
true
;
// This block is behind the current row position. Advance the block.
for
(
++
rPos
;
rPos
!=
rEnd
;
++
rPos
)
{
if
(
nRow
<
rPos
->
position
+
rPos
->
size
&&
rPos
->
type
==
sc
::
element_type_empty
)
// Found a non-empty block that contains the specified row.
return
true
;
}
// No more blocks.
return
false
;
}
}
// Skip any invalid / empty cells across the current row,
// Skip any invalid / empty cells across the current row,
// we only advance the cursor if the current entry is invalid.
// we only advance the cursor if the current entry is invalid.
// if we return true we have a valid cursor (or hit the end)
// if we return true we have a valid cursor (or hit the end)
...
...
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