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
9807d449
Kaydet (Commit)
9807d449
authored
Kas 12, 2014
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#86219 use vector replication when obtaining scalar for jump matrix
Change-Id: Id778dd7f649b480538fe757aab70c5e890123f31
üst
187ffc5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
interpr4.cxx
sc/source/core/tool/interpr4.cxx
+2
-1
No files found.
sc/source/core/tool/interpr4.cxx
Dosyayı görüntüle @
9807d449
...
...
@@ -2160,7 +2160,8 @@ double ScInterpreter::GetDoubleFromMatrix(const ScMatrixRef& pMat)
SCSIZE
nCols
,
nRows
,
nC
,
nR
;
pMat
->
GetDimensions
(
nCols
,
nRows
);
pJumpMatrix
->
GetPos
(
nC
,
nR
);
if
(
nC
<
nCols
&&
nR
<
nRows
)
// Use vector replication for single row/column arrays.
if
(
(
nC
<
nCols
||
nCols
==
1
)
&&
(
nR
<
nRows
||
nRows
==
1
)
)
return
pMat
->
GetDouble
(
nC
,
nR
);
SetError
(
errNoValue
);
...
...
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