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
28a11eee
Kaydet (Commit)
28a11eee
authored
Eki 22, 2016
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Have the logger instantiate on first use.
Change-Id: Ia2e3c011a66030aafa479f3ea47dcc1fb0c5e8be
üst
3ab68524
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
formulacell.cxx
sc/source/core/data/formulacell.cxx
+7
-2
No files found.
sc/source/core/data/formulacell.cxx
Dosyayı görüntüle @
28a11eee
...
@@ -215,7 +215,12 @@ struct DebugCalculationStacker
...
@@ -215,7 +215,12 @@ struct DebugCalculationStacker
namespace
{
namespace
{
sc
::
FormulaLogger
aLogger
;
sc
::
FormulaLogger
&
getLogger
()
{
static
sc
::
FormulaLogger
aLogger
;
return
aLogger
;
}
// More or less arbitrary, of course all recursions must fit into available
// More or less arbitrary, of course all recursions must fit into available
// stack space (which is what on all systems we don't know yet?). Choosing a
// stack space (which is what on all systems we don't know yet?). Choosing a
...
@@ -4033,7 +4038,7 @@ bool ScFormulaCell::InterpretFormulaGroup()
...
@@ -4033,7 +4038,7 @@ bool ScFormulaCell::InterpretFormulaGroup()
if
(
!
mxGroup
||
!
pCode
)
if
(
!
mxGroup
||
!
pCode
)
return
false
;
return
false
;
auto
aScope
=
aLogger
.
enterGroup
(
*
pDocument
,
*
this
);
auto
aScope
=
getLogger
()
.
enterGroup
(
*
pDocument
,
*
this
);
if
(
mxGroup
->
meCalcState
==
sc
::
GroupCalcDisabled
)
if
(
mxGroup
->
meCalcState
==
sc
::
GroupCalcDisabled
)
{
{
...
...
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