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
017d16bd
Kaydet (Commit)
017d16bd
authored
Ara 16, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Reduce the size of ScFormulaCell by packing the matrix flag value.
Change-Id: I07ee4f03ba74415c11188f7b63879ccad542537c
üst
990dbcab
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
formulacell.hxx
sc/inc/formulacell.hxx
+1
-1
formulacell.cxx
sc/source/core/data/formulacell.cxx
+6
-6
No files found.
sc/inc/formulacell.hxx
Dosyayı görüntüle @
017d16bd
...
...
@@ -129,8 +129,8 @@ private:
ScFormulaCell
*
pPreviousTrack
;
ScFormulaCell
*
pNextTrack
;
sal_uInt16
nSeenInIteration
;
// Iteration cycle in which the cell was last encountered
sal_uInt8
cMatrixFlag
;
// One of ScMatrixMode
short
nFormatType
;
sal_uInt8
cMatrixFlag
:
2
;
// One of ScMatrixMode
bool
bDirty
:
1
;
// Must be (re)calculated
bool
bChanged
:
1
;
// Whether something changed regarding display/representation
bool
bRunning
:
1
;
// Already interpreting right now
...
...
sc/source/core/data/formulacell.cxx
Dosyayı görüntüle @
017d16bd
...
...
@@ -593,8 +593,8 @@ ScFormulaCell::ScFormulaCell( ScDocument* pDoc, const ScAddress& rPos ) :
pPreviousTrack
(
0
),
pNextTrack
(
0
),
nSeenInIteration
(
0
),
cMatrixFlag
(
MM_NONE
),
nFormatType
(
NUMBERFORMAT_NUMBER
),
cMatrixFlag
(
MM_NONE
),
bDirty
(
false
),
bChanged
(
false
),
bRunning
(
false
),
...
...
@@ -622,8 +622,8 @@ ScFormulaCell::ScFormulaCell( ScDocument* pDoc, const ScAddress& rPos,
pPreviousTrack
(
0
),
pNextTrack
(
0
),
nSeenInIteration
(
0
),
cMatrixFlag
(
cMatInd
),
nFormatType
(
NUMBERFORMAT_NUMBER
),
cMatrixFlag
(
cMatInd
),
bDirty
(
true
),
// -> Because of the use of the Auto Pilot Function was: cMatInd != 0
bChanged
(
false
),
bRunning
(
false
),
...
...
@@ -654,8 +654,8 @@ ScFormulaCell::ScFormulaCell(
pPreviousTrack
(
0
),
pNextTrack
(
0
),
nSeenInIteration
(
0
),
cMatrixFlag
(
cMatInd
),
nFormatType
(
NUMBERFORMAT_NUMBER
),
cMatrixFlag
(
cMatInd
),
bDirty
(
true
),
bChanged
(
false
),
bRunning
(
false
),
...
...
@@ -702,8 +702,8 @@ ScFormulaCell::ScFormulaCell(
pPreviousTrack
(
0
),
pNextTrack
(
0
),
nSeenInIteration
(
0
),
cMatrixFlag
(
cMatInd
),
nFormatType
(
NUMBERFORMAT_NUMBER
),
cMatrixFlag
(
cMatInd
),
bDirty
(
true
),
bChanged
(
false
),
bRunning
(
false
),
...
...
@@ -749,8 +749,8 @@ ScFormulaCell::ScFormulaCell(
pPreviousTrack
(
0
),
pNextTrack
(
0
),
nSeenInIteration
(
0
),
cMatrixFlag
(
cInd
),
nFormatType
(
xGroup
->
mnFormatType
),
cMatrixFlag
(
cInd
),
bDirty
(
true
),
bChanged
(
false
),
bRunning
(
false
),
...
...
@@ -778,8 +778,8 @@ ScFormulaCell::ScFormulaCell( const ScFormulaCell& rCell, ScDocument& rDoc, cons
pPreviousTrack
(
0
),
pNextTrack
(
0
),
nSeenInIteration
(
0
),
cMatrixFlag
(
rCell
.
cMatrixFlag
),
nFormatType
(
rCell
.
nFormatType
),
cMatrixFlag
(
rCell
.
cMatrixFlag
),
bDirty
(
rCell
.
bDirty
),
bChanged
(
rCell
.
bChanged
),
bRunning
(
false
),
...
...
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