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
f219bd4c
Kaydet (Commit)
f219bd4c
authored
Haz 15, 2016
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: tdf#100409 GetDoubleWithStringConversion() in GetDoubleFromMatrix()
Change-Id: I1e88e9fa6361c6f1f2aebebc101d44bc8e974283
üst
481b8589
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
interpr4.cxx
sc/source/core/tool/interpr4.cxx
+2
-2
No files found.
sc/source/core/tool/interpr4.cxx
Dosyayı görüntüle @
f219bd4c
...
...
@@ -1989,14 +1989,14 @@ double ScInterpreter::GetDoubleFromMatrix(const ScMatrixRef& pMat)
return
0.0
;
if
(
!
pJumpMatrix
)
return
pMat
->
GetDouble
(
0
);
return
pMat
->
GetDouble
WithStringConversion
(
0
,
0
);
SCSIZE
nCols
,
nRows
,
nC
,
nR
;
pMat
->
GetDimensions
(
nCols
,
nRows
);
pJumpMatrix
->
GetPos
(
nC
,
nR
);
// Use vector replication for single row/column arrays.
if
(
(
nC
<
nCols
||
nCols
==
1
)
&&
(
nR
<
nRows
||
nRows
==
1
)
)
return
pMat
->
GetDouble
(
nC
,
nR
);
return
pMat
->
GetDouble
WithStringConversion
(
nC
,
nR
);
SetError
(
errNoValue
);
return
0.0
;
...
...
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