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
c0ca1ef1
Kaydet (Commit)
c0ca1ef1
authored
12 years ago
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
string result of formula is also valid, fdo#49052
Change-Id: I I0beb439381a0d01b27d219b148c47839055b6f62
üst
ee34a78b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
dociter.cxx
sc/source/core/data/dociter.cxx
+9
-1
No files found.
sc/source/core/data/dociter.cxx
Dosyayı görüntüle @
c0ca1ef1
...
...
@@ -615,8 +615,16 @@ bool ScDBQueryDataIterator::DataAccessInternal::getCurrent(Value& rValue)
rValue
.
mnError
=
((
ScFormulaCell
*
)
pCell
)
->
GetErrCode
();
return
true
;
// gefunden
}
else
else
if
(
mpParam
->
mbSkipString
)
nRow
++
;
else
{
rValue
.
maString
=
static_cast
<
ScFormulaCell
*>
(
pCell
)
->
GetString
();
rValue
.
mfValue
=
0.0
;
rValue
.
mnError
=
static_cast
<
ScFormulaCell
*>
(
pCell
)
->
GetErrCode
();
rValue
.
mbIsNumber
=
false
;
return
true
;
}
}
break
;
case
CELLTYPE_STRING
:
...
...
This diff is collapsed.
Click to expand it.
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