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
608fdfe1
Kaydet (Commit)
608fdfe1
authored
Tem 17, 2012
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Don't forget to initialize the flag matrix.
Change-Id: I02ca2b6fbe49530988a81d12b4e38d24c9046cf6
üst
cc720601
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
scmatrix.cxx
sc/source/core/tool/scmatrix.cxx
+3
-2
No files found.
sc/source/core/tool/scmatrix.cxx
Dosyayı görüntüle @
608fdfe1
...
@@ -444,10 +444,10 @@ private:
...
@@ -444,10 +444,10 @@ private:
};
};
ScMatrixImpl
::
ScMatrixImpl
(
SCSIZE
nC
,
SCSIZE
nR
)
:
ScMatrixImpl
::
ScMatrixImpl
(
SCSIZE
nC
,
SCSIZE
nR
)
:
maMat
(
nR
,
nC
),
pErrorInterpreter
(
NULL
),
mbCloneIfConst
(
true
)
{}
maMat
(
nR
,
nC
),
maMatFlag
(
nR
,
nC
),
pErrorInterpreter
(
NULL
),
mbCloneIfConst
(
true
)
{}
ScMatrixImpl
::
ScMatrixImpl
(
SCSIZE
nC
,
SCSIZE
nR
,
double
fInitVal
)
:
ScMatrixImpl
::
ScMatrixImpl
(
SCSIZE
nC
,
SCSIZE
nR
,
double
fInitVal
)
:
maMat
(
nR
,
nC
,
fInitVal
),
pErrorInterpreter
(
NULL
),
mbCloneIfConst
(
true
)
{}
maMat
(
nR
,
nC
,
fInitVal
),
maMatFlag
(
nR
,
nC
),
pErrorInterpreter
(
NULL
),
mbCloneIfConst
(
true
)
{}
ScMatrixImpl
::~
ScMatrixImpl
()
ScMatrixImpl
::~
ScMatrixImpl
()
{
{
...
@@ -457,6 +457,7 @@ ScMatrixImpl::~ScMatrixImpl()
...
@@ -457,6 +457,7 @@ ScMatrixImpl::~ScMatrixImpl()
void
ScMatrixImpl
::
Clear
()
void
ScMatrixImpl
::
Clear
()
{
{
maMat
.
clear
();
maMat
.
clear
();
maMatFlag
.
clear
();
}
}
void
ScMatrixImpl
::
SetImmutable
(
bool
bVal
)
void
ScMatrixImpl
::
SetImmutable
(
bool
bVal
)
...
...
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