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
42d3adbc
Kaydet (Commit)
42d3adbc
authored
Mar 19, 2013
tarafından
Michael Meeks
Kaydeden (comit)
Kohei Yoshida
Mar 19, 2013
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
calm debug, and disable unless SC_FORMULAGROUP=1
Change-Id: I091d43dfa33f440edd50a1c937ef6e6f1930be4e
üst
20c4921e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
5 deletions
+13
-5
ucalc.cxx
sc/qa/unit/ucalc.cxx
+3
-0
cell2.cxx
sc/source/core/data/cell2.cxx
+4
-4
column3.cxx
sc/source/core/data/column3.cxx
+1
-1
documen9.cxx
sc/source/core/data/documen9.cxx
+5
-0
No files found.
sc/qa/unit/ucalc.cxx
Dosyayı görüntüle @
42d3adbc
...
...
@@ -6224,6 +6224,9 @@ void Test::testCellTextWidth()
void
Test
::
testFormulaGrouping
()
{
if
(
!
getenv
(
"SC_FORMULAGROUP"
)
)
return
;
static
const
struct
{
const
char
*
pFormula
[
3
];
const
bool
bGroup
[
3
];
...
...
sc/source/core/data/cell2.cxx
Dosyayı görüntüle @
42d3adbc
...
...
@@ -1748,7 +1748,7 @@ ScSimilarFormulaDelta *ScFormulaCell::BuildDeltaTo( ScFormulaCell *pOtherCell )
if
(
!
pThis
||
!
pOther
)
{
fprintf
(
stderr
,
"Error: no compiled code for cells !"
);
//
fprintf( stderr, "Error: no compiled code for cells !" );
return
NULL
;
}
...
...
@@ -1817,12 +1817,12 @@ bool ScFormulaCell::InterpretFormulaGroup()
if
(
!
xGroup
.
get
()
)
return
false
;
fprintf
(
stderr
,
"Interpret cell %d, %d
\n
"
,
(
int
)
aPos
.
Col
(),
(
int
)
aPos
.
Row
()
);
//
fprintf( stderr, "Interpret cell %d, %d\n", (int)aPos.Col(), (int)aPos.Row() );
if
(
xGroup
->
mpDelta
->
IsInvariant
()
)
{
fprintf
(
stderr
,
"struck gold - completely invariant for %d items !
\n
"
,
(
int
)
xGroup
->
mnLength
);
//
fprintf( stderr, "struck gold - completely invariant for %d items !\n",
//
(int)xGroup->mnLength );
// calculate ourselves:
InterpretTail
(
SCITP_NORMAL
);
...
...
sc/source/core/data/column3.cxx
Dosyayı görüntüle @
42d3adbc
...
...
@@ -2119,7 +2119,7 @@ void ScColumn::RebuildFormulaGroups()
}
}
#if
1 //
OSL_DEBUG_LEVEL > 0
#if OSL_DEBUG_LEVEL > 0
if
(
maDoubles
.
size
()
+
maFnGroups
.
size
()
>
0
)
{
rtl
::
OUString
aStr
;
...
...
sc/source/core/data/documen9.cxx
Dosyayı görüntüle @
42d3adbc
...
...
@@ -697,6 +697,11 @@ void ScDocument::ApplyAsianEditSettings( ScEditEngineDefaulter& rEngine )
void
ScDocument
::
RebuildFormulaGroups
()
{
static
const
char
*
pEnableFormulaGroups
=
getenv
(
"SC_FORMULAGROUP"
);
if
(
!
pEnableFormulaGroups
)
return
;
SCTAB
nTab
;
for
(
nTab
=
0
;
nTab
<
static_cast
<
SCTAB
>
(
maTabs
.
size
());
nTab
++
)
if
(
maTabs
[
nTab
])
...
...
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